dazzle/src/routes/articles/article.css

53 lines
640 B
CSS
Raw Normal View History

2025-04-28 17:23:28 +03:30
* {
2025-05-14 01:31:12 +03:30
color: #ebdbb2;
font-family: 'Inter';
font-optical-sizing: auto;
font-weight: 400;
font-style: normal;
2025-04-25 17:13:38 +03:30
}
2025-04-30 18:15:19 +03:30
strong {
2025-05-14 01:31:12 +03:30
font-weight: 600;
font-style: italic;
color: #fabd2f;
}
strong:hover {
color: #fe8019;
2025-04-25 17:13:38 +03:30
}
h1 {
2025-05-14 01:31:12 +03:30
display: block;
font-size: 2em;
margin-top: 0em;
margin-bottom: 0em;
margin-left: 0;
margin-right: 0;
font-weight: bold;
2025-04-25 17:13:38 +03:30
}
h2 {
2025-05-14 01:31:12 +03:30
display: block;
font-size: 1.5em;
margin-top: 0.83em;
margin-bottom: 0em;
margin-left: 0;
margin-right: 0;
font-weight: bold;
}
a {
display: block;
text-decoration: none;
color: #83a598;
}
a:hover {
color: #458588;
2025-04-25 17:13:38 +03:30
}
2025-05-05 16:54:00 +03:30
.katex {
2025-05-14 01:31:12 +03:30
width: max-content;
margin-left: 0;
2025-05-05 16:54:00 +03:30
}