mirror of
https://github.com/MathiasDPX/blog.git
synced 2025-05-09 23:23:09 +00:00
68 lines
No EOL
1.2 KiB
CSS
68 lines
No EOL
1.2 KiB
CSS
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
|
|
|
|
/* Base Typography */
|
|
body {
|
|
font-family: "PT Serif", Georgia, Times, "Times New Roman", serif;
|
|
color: #000000;
|
|
}
|
|
|
|
/* Headings */
|
|
h1, h2, h3, h4, h5, h6 {
|
|
margin-bottom: 0;
|
|
font-family: "Montserrat", sans-serif;
|
|
font-weight: bold;
|
|
}
|
|
|
|
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
|
|
color: #000000;
|
|
position: relative;
|
|
}
|
|
|
|
/* Heading Hover Effects */
|
|
h1.chapter a:hover::before,
|
|
h2.chapter a:hover::before,
|
|
h3.chapter a:hover::before,
|
|
h4.chapter a:hover::before,
|
|
h5.chapter a:hover::before,
|
|
h6.chapter a:hover::before {
|
|
content: "#";
|
|
position: absolute;
|
|
left: -0.75em;
|
|
top: 0;
|
|
color: #0073E6;
|
|
}
|
|
|
|
/* Text Elements */
|
|
#main p {
|
|
margin-bottom: 0.75em;
|
|
}
|
|
|
|
summary > small {
|
|
font-size: 0.5em;
|
|
}
|
|
|
|
time {
|
|
font-family: "Montserrat", sans-serif;
|
|
font-weight: bold;
|
|
font-size: 75%;
|
|
}
|
|
|
|
#main details summary {
|
|
font-family: "Montserrat", sans-serif;
|
|
font-weight: 500;
|
|
}
|
|
|
|
/* Navigation */
|
|
#navbar {
|
|
text-transform: uppercase;
|
|
font-family: "Montserrat", sans-serif;
|
|
}
|
|
|
|
#navbar a {
|
|
color: inherit;
|
|
}
|
|
|
|
/* Footer */
|
|
#footer-title {
|
|
font-family: "Montserrat", sans-serif;
|
|
} |