erynwells.me/assets/home.css

42 lines
459 B
CSS
Raw Normal View History

2021-10-02 11:13:13 -07:00
/* home.css */
2021-10-10 19:58:40 -07:00
.main h1,
.main h2,
.main h3 {
margin-top: 5rem;
2021-10-06 09:25:23 -07:00
margin-bottom: 0.7rem;
}
2021-10-10 19:58:40 -07:00
.main h1:first-child {
2021-10-10 10:33:10 -07:00
margin-top: 0;
}
2021-10-10 19:58:40 -07:00
.main a {
color: var(--link-color);
2021-10-10 18:41:08 -07:00
}
2021-10-10 20:15:44 -07:00
.main a:hover {
border-bottom: 2px solid var(--link-color);
}
2021-10-10 19:58:40 -07:00
.main h1 {
2021-10-06 09:25:23 -07:00
font-size: 5rem;
}
2021-10-10 19:58:40 -07:00
.main h2 {
2021-10-06 09:25:23 -07:00
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 19:58:40 -07:00
.main p:first-child {
2021-10-02 11:13:13 -07:00
margin-top: 0;
}
2021-10-10 19:58:40 -07:00
.main p,
.main ul {
margin-top: 1.5rem;
2021-10-10 19:58:40 -07:00
}