Files
fte-Homepage/static/css/custom.css
Fabian Ecke 913edd61e8
All checks were successful
Website / Website veröffentlichen (push) Successful in 6s
update style 2
2024-08-11 23:40:22 +02:00

62 lines
737 B
CSS

:root {
color-scheme: only dark;
}
body {
background-color: #272727;
color: #00ad8e;
}
.a-green a:hover {
color: #0c8771;
}
.a-green a {
color: #00ad8e;
transition: 400ms;
}
.features-box {
background-color: #272727;
color: #00ad8e;
}
.feature-box {
background-color: #3d3d3d;
color: inherit;
}
.navbar-link {
color: white;
}
.border-green-custom {
border-color: #10473d;
}
.text-green-custom {
color: #00ad8e;
}
.text-white-custom {
color: white;
}
.text-lightgray-custom {
color: #787777;
}
.bg-darker-green-custom {
background-color: #0c8771;
}
.bg-gray-custom {
background-color: #272727;
}
.bg-darkergrey-custom {
background-color: #121212;
}
.transition-400 {
transition: 400ms;
}