mestizo.monster/themes/corazon/assets/css/main.scss

94 lines
1.4 KiB
SCSS
Raw Normal View History

2024-04-17 00:18:00 -04:00
@import url(https://fonts.bunny.net/css?family=averia-sans-libre:700|cabin:400,400i,500,500i,600,600i,700,700i);
body {
font-family: 'Cabin', sans-serif;
font-size: 1.2rem;
2024-03-02 17:44:53 -05:00
line-height: 1.5;
margin: 1rem;
2024-04-17 00:18:00 -04:00
margin-left: auto;
margin-right: auto;
2024-03-02 17:44:53 -05:00
max-width: 768px;
}
2024-04-17 00:18:00 -04:00
h1, h2, h3, h4, h5, h6, nav {
font-family: 'Averia Sans Libre', display;
font-weight: 700;
}
nav {
ul {
display: flex;
justify-content: space-between;
list-style-position: inside;
margin-left: 0;
padding-left: 0;
}
li {
font-size: 1.3rem;
margin: auto 3rem auto 3rem;
flex-direction: column;
list-style-type: none;
border-bottom: 1px solid #a6dc68;
}
}
2024-03-02 17:44:53 -05:00
header {
margin-bottom: 1rem;
}
2024-04-17 00:18:00 -04:00
figure {
margin: none;
text-align: center;
img {
border-radius: 1rem;
max-height: 30rem;
max-width: 100%;
}
figcaption {
margin-top: -0.666rem;
font-size: 0.8rem;
opacity: 69%;
}
}
2024-03-02 17:44:53 -05:00
footer {
border-top: 1px solid #222;
margin-top: 1rem;
2024-04-17 00:18:00 -04:00
text-align: center;
2024-03-02 17:44:53 -05:00
}
a {
2024-04-17 00:18:00 -04:00
color: #a6dc68;
2024-03-02 17:44:53 -05:00
text-decoration: none;
}
2024-04-16 23:19:17 -04:00
2024-04-17 00:18:00 -04:00
code {
}
2024-04-16 23:19:17 -04:00
@media (prefers-color-scheme: light) {
body {
background: #eee;
color: #291712;
}
2024-04-17 00:18:00 -04:00
a {
color: #63843e;
}
h1 {
a {
color: #87a73d;
}
}
2024-04-16 23:19:17 -04:00
}
@media (prefers-color-scheme: dark) {
body {
background: #291712;
color: #eee;
}
2024-04-17 00:18:00 -04:00
h1 {
a {
color: #87a73d;
}
}
2024-04-16 23:19:17 -04:00
}