update css

This commit is contained in:
Luke Boswell 2023-06-25 14:20:32 +10:00
parent d22d5a1202
commit fd18840bda
No known key found for this signature in database
GPG Key ID: F6DB3C9DB47377B0

View File

@ -27,7 +27,7 @@
html {
line-height: 1.5rem;
background: var(--body-bg);
background: var(--body-bg-color);
color: var(--text-color);
font-family: "Lato", sans-serif;
}
@ -67,7 +67,7 @@ li {
}
#top-bar {
background-color: var(--top-bar-bg);
background-color: var(--violet-bg);
width: 100%;
height: 50px;
}
@ -277,7 +277,7 @@ footer {
margin: 0;
}
}
@font-face {
font-family: "Permanent Marker";
font-style: normal;
@ -545,3 +545,43 @@ code .dim {
height: 40px;
margin: 0 auto;
}
.home-goals-container {
display: flex;
justify-content: space-between;
}
.home-goals-column {
flex-basis: 30%;
padding: 20px;
background-color: var(--violet-bg);
margin-right: 20px;
}
.home-goals-column:last-child {
margin-right: 0;
}
.home-goals-title {
font-size: 18px;
font-weight: bold;
margin-bottom: 10px;
}
.home-goals-description {
font-size: 14px;
line-height: 1.5;
margin-bottom: 10px;
}
.home-goals-learn-more {
color: var(--violet);
text-decoration: none;
}
#footer {
background-color: var(--violet-bg);
color: var(--text-color);
padding: 20px;
text-align: center;
}