Collect Static

This commit is contained in:
itqop 2024-03-18 01:58:47 +03:00
parent 40971c6bdc
commit 03bdcf6db1
5 changed files with 49 additions and 2 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

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

View File

@ -16,6 +16,11 @@ html, body {
.container img { .container img {
display: block; display: block;
margin: 0 auto; margin: 0 auto;
padding-bottom: 10px;
}
.container a {
color:blue;
} }
.font-main { .font-main {

File diff suppressed because one or more lines are too long