dazzle/src/routes/articles/article.css

48 lines
798 B
CSS
Raw Normal View History

2025-04-28 17:23:28 +03:30
@import "tailwindcss";
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
2025-04-25 17:13:38 +03:30
2025-04-28 17:23:28 +03:30
* {
color: #ebdbb2;
font-family: "Inter", sans-serif;
font-optical-sizing: auto;
font-weight: 400;
font-style: normal;
2025-04-25 17:13:38 +03:30
}
br {
margin-bottom: 1em;
}
h1 {
font-size: 2em;
margin-bottom: .3em;
}
h2 {
font-size: 1.7em;
margin-bottom: .3em;
margin-top: .6em;
}
2025-04-28 17:23:28 +03:30
.body {
background-color: #1d2021;
display: flex;
}
2025-04-25 17:13:38 +03:30
.article_body {
2025-04-28 17:23:28 +03:30
flex: 3;
2025-04-25 17:13:38 +03:30
margin-left: 10em;
margin-right: 10em;
padding: 1em;
background-color: #282828;
text-align: justify;
max-width: 80ch;
2025-04-28 17:23:28 +03:30
border-left: 1px solid #7c6f64;
border-right: 1px solid #7c6f64;
}
.article_padding {
flex: 1;
2025-04-25 17:13:38 +03:30
}