Fix a font loading error when testing locally and a first draft at a print.css file
This commit is contained in:
@@ -0,0 +1,65 @@
|
||||
body {
|
||||
color: #f8f9f2;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #00eb39;
|
||||
}
|
||||
|
||||
.callout a {
|
||||
color: #f8f9f2;
|
||||
}
|
||||
|
||||
footer p {
|
||||
color: #838c95;
|
||||
}
|
||||
|
||||
header {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.bio:before {
|
||||
content: 'Mike Rockwell';
|
||||
font-weight: 400;
|
||||
display: block;
|
||||
font-size: 1.17em;
|
||||
margin-block-start: 1em;
|
||||
margin-block-end: 1em;
|
||||
margin-inline-start: 0px;
|
||||
margin-inline-end: 0px;
|
||||
font-weight: bold;
|
||||
unicode-bidi: isolate;
|
||||
}
|
||||
|
||||
#contact-button {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.divider {
|
||||
display: none;
|
||||
}
|
||||
|
||||
#portfolio:before {
|
||||
content: 'Projects';
|
||||
font-weight: 400;
|
||||
display: block;
|
||||
font-size: 1.17em;
|
||||
margin-block-start: 1em;
|
||||
margin-block-end: 1em;
|
||||
margin-inline-start: 0px;
|
||||
margin-inline-end: 0px;
|
||||
font-weight: bold;
|
||||
unicode-bidi: isolate;
|
||||
}
|
||||
|
||||
#portfolio img {
|
||||
display: none;
|
||||
}
|
||||
|
||||
#contact p:after {
|
||||
content: ' mike@rockwell.mx';
|
||||
}
|
||||
|
||||
#contact form {
|
||||
display: none;
|
||||
}
|
@@ -1,6 +1,6 @@
|
||||
@font-face {
|
||||
font-family: "IBM Plex Mono";
|
||||
src: url(fonts/IBMPlexMono.ttf);
|
||||
src: url(../fonts/IBMPlexMono.ttf);
|
||||
}
|
||||
/*
|
||||
Colors:
|
||||
|
@@ -91,6 +91,6 @@
|
||||
<p>View source on <a href="https://libertynode.dev/mdrockwell/resume" title="View source on Gitea">Gitea</a></p>
|
||||
</footer>
|
||||
<script src="app.js" type="text/javascript"></script>
|
||||
<link rel="stylesheet" media="print" href="css/print.css" />
|
||||
<!-- <link rel="stylesheet" media="print" href="css/print.css" /> -->
|
||||
</body>
|
||||
</html>
|
||||
|
Reference in New Issue
Block a user