Initial commit

This commit is contained in:
Kirchik
2025-08-02 11:45:16 +02:00
parent a6a820aba2
commit a0ba937a46
1078 changed files with 7800 additions and 1115 deletions
+23
View File
@@ -0,0 +1,23 @@
/* Уменьшение отступов между меню и заголовками страниц */
#main > * {
padding-top: 2rem !important;
}
/* Для мобильных устройств */
@media (max-width: 736px) {
#main > * {
padding-top: 1.5rem !important;
}
}
/* Уменьшение размера заголовков на страницах */
.post header.major h1 {
font-size: 2.5rem !important;
line-height: 1.2 !important;
}
@media (max-width: 736px) {
.post header.major h1 {
font-size: 2rem !important;
}
}