log101-dot-dev/assets/scss/style.scss
2023-12-06 04:16:40 +00:00

102 lines
1.7 KiB
SCSS

#page {
height: 100vh;
margin: 0
}
#spotlight {
display: flex;
min-height: 100vh;
flex-direction: column;
align-items: start;
justify-content: space-between;
max-width: 400px;
margin: auto;
font-size: 1.5rem;
@media (max-width: 448px) {
margin-left: 24px;
}
}
.site-main {
display: flex;
min-height: 100vh;
flex-direction: column;
align-items: start;
justify-content: space-between;
max-width: 400px;
margin: auto;
font-size: 1.5rem;
@media (max-width: 448px) {
margin-left: 24px;
}
}
#home-center {
display: flex;
flex-direction: column;
align-items: flex-start;
}
#home-title {
color: #202020;
font-family: Inter;
font-size: 48px;
font-style: normal;
font-weight: 500;
line-height: normal;
}
#home-nav {
display: flex;
flex-direction: column;
a {
color: #252525;
font-family: Inter;
font-size: 40px;
font-style: normal;
font-weight: 400;
line-height: 150%;
/* 60px */
text-decoration-line: underline;
}
}
#home-footer {
width: 100%;
p {
color: #5C5C5C;
font-family: Inter;
font-size: 20px;
font-style: normal;
font-weight: 300;
line-height: normal;
display: flex;
gap: 8px;
justify-content: center;
}
a {
color: #5C5C5C;
font-family: Inter;
font-size: 20px;
font-style: normal;
font-weight: 300;
line-height: normal;
display: flex;
gap: 8px;
justify-content: center;
text-decoration: none;
&:hover {
text-decoration: underline;
}
}
}