45 lines
No EOL
489 B
CSS
45 lines
No EOL
489 B
CSS
/* home.css */
|
|
|
|
:root {
|
|
--link-color: #3486ff;
|
|
}
|
|
|
|
main a {
|
|
color: var(--link-color);
|
|
}
|
|
|
|
main a:hover {
|
|
color: ver(--fog);
|
|
border-bottom: 1px solid var(--link-color);
|
|
}
|
|
|
|
main h1,
|
|
main h2,
|
|
main h3 {
|
|
margin-top: 4rem;
|
|
margin-bottom: 0.7rem;
|
|
}
|
|
|
|
main h1:first-child {
|
|
margin-top: 0;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 5rem;
|
|
}
|
|
|
|
h2 {
|
|
font-size: 3rem;
|
|
}
|
|
|
|
#homepage-content {
|
|
margin-bottom: 2em;
|
|
}
|
|
|
|
main p:first-child {
|
|
margin-top: 0;
|
|
}
|
|
|
|
main p {
|
|
margin-top: 2rem;
|
|
} |