You've already forked fm-dx-webserver
mirror of
https://github.com/KubaPro010/fm-dx-webserver.git
synced 2026-02-26 14:11:59 +01:00
133 lines
1.6 KiB
CSS
133 lines
1.6 KiB
CSS
.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);
|
|
}
|
|
|
|
.br-5 {
|
|
border-radius: 5px;
|
|
}
|
|
|
|
.flex-container {
|
|
display: flex;
|
|
}
|
|
|
|
.flex-center {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.flex-left {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.hover-brighten {
|
|
transition: 0.3s ease-in-out background-color;
|
|
}
|
|
|
|
.hover-brighten:hover {
|
|
cursor: pointer;
|
|
background-color: var(--color-2);
|
|
}
|
|
|
|
.text-left {
|
|
text-align: left;
|
|
}
|
|
|
|
.text-big {
|
|
font-size: 52px;
|
|
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-smaller {
|
|
font-size: 11px;
|
|
}
|
|
|
|
.text-gray {
|
|
color: #666;
|
|
}
|
|
|
|
.text-red {
|
|
color: #ff5776;
|
|
}
|
|
|
|
.text-uppercase {
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.top-10 {
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.bottom-20 {
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.bottom-50 {
|
|
margin-bottom: 50px;
|
|
}
|
|
|
|
.p-10 {
|
|
padding: 10px;
|
|
}
|
|
|
|
@media only screen and (max-width: 960px) {
|
|
.text-medium-big {
|
|
font-size: 32px;
|
|
}
|
|
.text-big {
|
|
font-size: 40px;
|
|
display: block;
|
|
margin-top: -25px;
|
|
}
|
|
.text-big#data-ps {
|
|
margin: 0;
|
|
}
|
|
}
|
|
|
|
@media only screen and (max-width: 768px) {
|
|
.flex-container {
|
|
display: block;
|
|
}
|
|
.flex-phone {
|
|
display: flex;
|
|
}
|
|
} |