erick.is/_sass/main.scss

102 lines
1.2 KiB
SCSS
Raw Normal View History

@use "pygments_default";
2024-12-01 09:29:34 -05:00
html {
box-sizing: border-box;
}
*,
*:before,
*:after {
box-sizing: inherit;
}
html, body {
width: 100%;
height: 100%;
margin: auto;
}
body {
font-family: sans-serif;
2024-12-01 09:29:34 -05:00
max-width: 800px;
display: flex;
flex-direction: column;
align-items: center;
}
2024-12-20 04:48:04 -05:00
h1 {
font-size: 1.3rem;
2024-12-20 04:48:04 -05:00
}
h2 {
font-size: 1.2rem;
}
h3 {
font-size: 1.1rem;
}
h4,h5,h6 {
font-size: 1rem;
}
main {
margin: 20px;
opacity: .8;
line-height: 1.5rem;
}
a {
text-decoration: none;
}
.site_header {
2024-12-01 09:29:34 -05:00
margin-top: 40px;
display: flex;
flex-direction: column;
align-items: center;
}
2024-12-20 04:48:04 -05:00
.panda {
width: 200px;
height: 200px;
border-radius: 100px;
}
.site_links {
2024-12-01 09:29:34 -05:00
display: flex;
flex-wrap: wrap;
justify-content: center;
margin: 40px 0;
2024-12-20 04:48:04 -05:00
&__link {
2024-12-01 09:29:34 -05:00
display: block;
margin: 0 20px;
opacity: .8;
}
}
2024-12-20 04:48:04 -05:00
.site_footer {
margin-top: 40px;
padding-bottom: 20px;
opacity: .3;
2024-12-01 09:29:34 -05:00
}
2024-12-20 04:48:04 -05:00
.articles {
2024-12-01 09:29:34 -05:00
opacity: .8;
2024-12-20 04:48:04 -05:00
margin-top: 60px;
2024-12-01 09:29:34 -05:00
}
2024-12-20 04:48:04 -05:00
.article {
&__back {
font-size: .9rem;
}
&__published {
font-style: italic;
font-size: .9rem;
opacity: .6;
}
2024-12-02 08:16:07 -05:00
}