52 lines
731 B
CSS
52 lines
731 B
CSS
@import './reset.css';
|
|
@import './components/ContentGrid.css';
|
|
|
|
html{
|
|
font-family: Roboto,sans-serif;
|
|
line-height: 1.15;
|
|
}
|
|
|
|
body {
|
|
|
|
font-size: 18px;
|
|
}
|
|
|
|
.container{
|
|
margin: 0 auto;
|
|
width: 1200px;
|
|
padding-bottom: 60px; /* Подберите высоту под ваш свернутый футер */
|
|
}
|
|
|
|
.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;
|
|
}
|
|
|
|
|
|
.maimnewsline{
|
|
display: flex;
|
|
}
|
|
|
|
|
|
|
|
@media (max-width: 767px) {
|
|
|
|
.container{
|
|
max-width: 100%;
|
|
}
|
|
|
|
} |