rumine-web/home/static/css/template.css

42 lines
644 B
CSS
Raw Permalink Normal View History

2024-03-17 18:11:38 +01:00
html, body {
height: 100%;
margin: 0;
padding: 0;
}
.wrapper {
min-height: 100%;
display: flex;
flex-direction: column;
}
.content {
flex: 1;
2024-03-17 23:20:45 +01:00
padding-top: 25px;
}
.container img {
display: block;
margin: 0 auto;
2024-03-17 23:58:24 +01:00
padding-bottom: 10px;
}
.container a {
color:blue;
2024-03-17 23:20:45 +01:00
}
.font-main {
font-size: 14pt;
}
2024-03-17 22:34:55 +01:00
@media (max-width: 992px) {
#target-main {
max-height: 0;
overflow: hidden;
transition: max-height 0.5s ease;
}
#target-main.show {
max-height: 500px; /* Установите желаемую максимальную высоту */
}
2024-03-17 22:01:00 +01:00
}