1
0
mirror of https://github.com/KubaPro010/fm-dx-webserver.git synced 2026-02-27 06:23:53 +01:00
This commit is contained in:
NoobishSVK
2024-01-22 20:33:45 +01:00
parent c72153763e
commit 5e3a0a466c
21 changed files with 1125 additions and 1180 deletions

89
web/css/helpers.css Normal file
View File

@@ -0,0 +1,89 @@
.auto {
margin: auto;
}
.bg-dark {
background: #100d1f;
}
.bg-none {
background: transparent !important;
}
.color-1 {
color: var(--color-1);
}
.color-2 {
color: var(--color-2);
}
.color-3 {
color: var(--color-3);
}
.color-4 {
color: var(--color-4);
}
.flex-container {
display: flex;
}
.flex-center {
display: flex;
justify-content: center;
align-items: center;
}
.hover-brighten:hover {
cursor: pointer;
background-color: var(--color-2);
}
.text-big {
font-size: 60px;
font-weight: 300;
}
.text-medium {
font-size: 24px;
color: #aaa;
font-weight: 300;
}
.text-medium-big {
font-size: 46px;
}
.text-small {
font-size: 13px;
}
.text-gray {
color: #666;
}
.text-uppercase {
text-transform: uppercase;
}
@media only screen and (max-width: 768px) {
.flex-container {
display: block;
}
.flex-phone {
display: flex;
}
.text-medium-big {
font-size: 32px;
}
.text-big {
font-size: 40px;
display: block;
margin-top: -25px;
}
.text-big#data-ps {
margin: 0;
}
}