38 lines
783 B
CSS
38 lines
783 B
CSS
.title{
|
|
font-size: 44px;
|
|
font-weight: 700;
|
|
margin-bottom: 80px;
|
|
margin-top: 60px;
|
|
width: 100%;
|
|
text-align: center;
|
|
}
|
|
|
|
.routes_content_part{
|
|
margin-top: 50px;
|
|
display: grid;
|
|
grid-template-columns: 30% calc(100% - 30% - 41px);
|
|
gap: 41px;
|
|
.routes_search_results{
|
|
.next_page{
|
|
margin: 50px 0;
|
|
width: 100%;
|
|
background: #212121;
|
|
height: 1px;
|
|
}
|
|
}
|
|
@media (max-width: 1440px) {
|
|
margin-top: 40px;
|
|
}
|
|
@media (max-width: 800px) {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
@media (max-width: 768px) {
|
|
margin-top: 40px;
|
|
}
|
|
@media (max-width: 576px) {
|
|
margin-top: 77px;
|
|
}
|
|
@media (max-width: 360px) {
|
|
margin-top: 40px;
|
|
}
|
|
} |