2025-12-11 01:12:45 +03:00
|
|
|
@import './reset.css';
|
2026-03-09 22:02:36 +03:00
|
|
|
@import './ContentLayout.css';
|
2025-12-11 01:12:45 +03:00
|
|
|
@import './components/ContentGrid.css';
|
2026-01-25 01:00:24 +03:00
|
|
|
@import './components/theme-colors.css';
|
|
|
|
|
|
|
|
|
|
|
2025-12-11 01:12:45 +03:00
|
|
|
|
|
|
|
|
html{
|
|
|
|
|
font-family: Roboto,sans-serif;
|
|
|
|
|
line-height: 1.15;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
body {
|
2026-03-02 00:39:07 +03:00
|
|
|
font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
|
2025-12-11 01:12:45 +03:00
|
|
|
font-size: 18px;
|
|
|
|
|
}
|
|
|
|
|
|
2026-01-25 01:00:24 +03:00
|
|
|
a {
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
a:hover {
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
}
|
|
|
|
|
|
2025-12-11 01:12:45 +03:00
|
|
|
.container{
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
width: 1200px;
|
2025-12-17 23:05:49 +03:00
|
|
|
padding-bottom: 60px; /* Подберите высоту под ваш свернутый футер */
|
2025-12-11 01:12:45 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.header-info{
|
|
|
|
|
width: 100%;
|
|
|
|
|
background: #303030;
|
|
|
|
|
margin-bottom: 20px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.header__widgets{
|
|
|
|
|
padding: 0.4375rem 0;
|
|
|
|
|
color: #fff;
|
|
|
|
|
font-size: 0.8rem;
|
|
|
|
|
line-height: 1.2;
|
|
|
|
|
width: 1200px;
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.current-date{
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
}
|
|
|
|
|
|
2026-02-18 01:02:01 +03:00
|
|
|
main {
|
|
|
|
|
width:100%;
|
|
|
|
|
}
|
|
|
|
|
|
2025-12-11 01:12:45 +03:00
|
|
|
|
|
|
|
|
@media (max-width: 767px) {
|
|
|
|
|
|
|
|
|
|
.container{
|
|
|
|
|
max-width: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|