Fix a font loading error when testing locally and a first draft at a print.css file

This commit is contained in:
2025-07-31 12:32:18 -04:00
parent 0269a7e72d
commit b080492aa2
3 changed files with 67 additions and 2 deletions

View File

@@ -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;
}

View File

@@ -1,6 +1,6 @@
@font-face { @font-face {
font-family: "IBM Plex Mono"; font-family: "IBM Plex Mono";
src: url(fonts/IBMPlexMono.ttf); src: url(../fonts/IBMPlexMono.ttf);
} }
/* /*
Colors: Colors:

View File

@@ -91,6 +91,6 @@
<p>View source on <a href="https://libertynode.dev/mdrockwell/resume" title="View source on Gitea">Gitea</a></p> <p>View source on <a href="https://libertynode.dev/mdrockwell/resume" title="View source on Gitea">Gitea</a></p>
</footer> </footer>
<script src="app.js" type="text/javascript"></script> <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> </body>
</html> </html>