erynwells.me/assets/home.css

46 lines
500 B
CSS
Raw Normal View History

2021-10-02 11:13:13 -07:00
/* home.css */
2021-10-06 09:25:23 -07:00
:root {
--link-color: #3486ff;
}
2021-10-05 08:28:28 -07:00
main a {
2021-10-06 09:25:23 -07:00
color: var(--link-color);
2021-10-05 08:28:28 -07:00
}
main a:hover {
color: ver(--fog);
2021-10-06 09:25:23 -07:00
border-bottom: 1px solid var(--link-color);
2021-10-05 08:28:28 -07:00
}
2021-10-10 10:33:10 -07:00
main h1,
main h2,
main h3 {
2021-10-06 09:25:23 -07:00
margin-top: 4rem;
margin-bottom: 0.7rem;
}
2021-10-10 10:33:10 -07:00
main h1:first-child {
margin-top: 0;
}
2021-10-06 09:25:23 -07:00
h1 {
font-size: 5rem;
}
h2 {
font-size: 3rem;
2021-10-02 11:13:13 -07:00
}
2021-10-06 09:25:23 -07:00
#homepage-content {
margin-bottom: 2em;
2021-10-02 11:13:13 -07:00
}
2021-10-10 10:33:10 -07:00
main p:first-child {
2021-10-02 11:13:13 -07:00
margin-top: 0;
}
main p,
main ul {
margin-top: 1.5rem;
2021-10-02 11:13:13 -07:00
}