www/assets/css/main.css

148 lines
3.6 KiB
CSS
Raw Normal View History

.HID {
display: none;
}
html, body {
background-color: #131a21;
display: flex;
flex-direction: column;
box-sizing: border-box;
height: 100%;
padding: 0;
margin: 0;
}
html a, body a {
background-color: transparent;
text-decoration: none;
}
html a:link, body a:link {
color: #fb923c;
}
html a:visited, body a:visited {
color: #fb923c;
}
html a:hover, body a:hover {
color: #fb923c;
text-decoration: underline;
}
html a:active, body a:active {
color: #2b3642;
}
html header, body header {
flex-grow: 0;
flex-shrink: 0;
display: flex;
align-items: center;
justify-content: center;
min-height: 50px;
background-color: #10161d;
border-bottom: #fb923c 1px solid;
2023-05-11 15:36:22 +03:00
}
html header #hlogo, body header #hlogo {
max-width: 50px;
max-height: 50px;
box-sizing: border-box;
}
html header #hlogo > img, body header #hlogo > img {
max-width: 50px;
max-height: 50px;
}
html header .tmpinfo, body header .tmpinfo {
color: #d2e0f0;
}
html article, body article {
2023-05-11 15:36:22 +03:00
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: start;
width: 100%;
height: calc(100% - 50px);
padding: 10px;
box-sizing: border-box;
background-color: #171e26;
color: #d2e0f0;
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
html article .title, body article .title {
font-size: 24px;
font-weight: bold;
align-self: center;
margin: 0;
padding-bottom: 10px;
}
html .block-out, body .block-out {
display: flex;
flex-direction: column;
flex-grow: 1;
width: 90%;
2023-05-11 17:58:03 +03:00
align-self: center;
2023-05-11 15:36:22 +03:00
}
2023-05-11 21:13:28 +03:00
@media only screen and (min-width: 768px) {
html .block-out, body .block-out {
2023-05-11 21:13:28 +03:00
margin: 0rem 5rem;
}
}
html .block-out .block-in, body .block-out .block-in {
background-color: #2b3642;
color: #d2e0f0;
2023-05-11 15:36:22 +03:00
border-radius: 10px;
padding: 1rem 0.5rem;
2023-05-11 17:58:03 +03:00
margin: 1rem 0;
}
html .block-out .block-in .list-header, body .block-out .block-in .list-header {
2023-05-11 17:58:03 +03:00
text-align: center;
2023-05-11 21:13:28 +03:00
}
html .block-out .block-in .basic-list, body .block-out .block-in .basic-list {
2023-05-11 17:58:03 +03:00
list-style-type: none;
2023-05-11 21:13:28 +03:00
display: flex;
flex-direction: column;
align-items: center;
padding: 0px;
2023-05-11 17:58:03 +03:00
}
html .block-out .block-in .basic-list > .block-list-in, body .block-out .block-in .basic-list > .block-list-in {
2023-05-11 21:13:28 +03:00
padding: 0rem 0;
margin: 0.5rem 0;
text-align: center;
background-color: #171e26;
2023-05-11 21:13:28 +03:00
border-radius: 10px;
border-style: dotted;
width: fit-content;
min-width: 50%;
}
@media only screen and (max-width: 768px) {
html .block-out .block-in .basic-list > .block-list-in, body .block-out .block-in .basic-list > .block-list-in {
2023-05-11 21:13:28 +03:00
min-width: 90%;
}
}
html .block-out .block-in .basic-list > .block-list-in .in-p, body .block-out .block-in .basic-list > .block-list-in .in-p {
2023-05-11 21:13:28 +03:00
margin: 0px;
padding: 1rem;
font-size: x-large;
font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
}
html .block-out .block-in .basic-list > .block-hover, body .block-out .block-in .basic-list > .block-hover {
2023-06-19 23:48:18 +03:00
transition: transform 1.2s cubic-bezier(0.075, 0.82, 0.165, 1);
}
html .block-out .block-in .basic-list > .block-hover:hover, body .block-out .block-in .basic-list > .block-hover:hover {
2023-07-12 23:00:24 +03:00
transform: scale(1.1);
2023-06-19 23:48:18 +03:00
}
html footer, body footer {
flex-grow: 0;
flex-shrink: 0;
display: flex;
align-items: center;
justify-content: center;
min-height: 50px;
background-color: #10161d;
border-top: #fb923c 1px solid;
}
html footer .tmpinfo, body footer .tmpinfo {
color: #d2e0f0;
}
.HID {
2023-06-19 23:48:18 +03:00
display: none;
2023-05-11 15:36:22 +03:00
}
/*# sourceMappingURL=main.css.map */