website/sass/css/base.scss

191 lines
2.7 KiB
SCSS
Raw Normal View History

2023-03-20 19:06:57 +01:00
@import "defs";
2023-03-23 00:15:56 +01:00
@import "clients";
2023-03-20 19:06:57 +01:00
@import "footer";
@import "header";
2023-04-19 15:40:47 +02:00
@import "partners";
@import "prices";
2023-03-20 19:06:57 +01:00
@import "process";
@import "services";
2023-04-29 00:28:54 +02:00
@import "square_box";
2023-03-20 19:06:57 +01:00
@import "team";
2022-09-26 16:19:31 +02:00
#dev-warning {
position: fixed;
top: 48px;
left: 0;
2022-09-26 23:42:42 +02:00
width: 240px;
2022-09-26 16:19:31 +02:00
background-color: #fa0;
border-bottom: 4px dashed #000;
border-right: 4px dashed #000;
border-top: 4px dashed #000;
border-bottom-right-radius: 16px;
border-top-right-radius: 16px;
padding: 4px;
font-size: 20px;
}
2022-09-26 07:46:56 +02:00
html, body {
margin: 0;
padding: 0;
font-family: LunaSans;
}
main {
width: 100%;
2022-09-26 23:42:42 +02:00
font-size: 18px;
min-height: calc(100vh - 155px);
}
main.center {
2022-09-26 07:46:56 +02:00
text-align: center;
}
2023-04-09 22:50:40 +02:00
@media screen and (min-width: 900px) {
2023-04-25 22:37:09 +02:00
.narrower > p, .narrower > ul, .narrower > ol, .narrower > h1, .narrower > h2, .narrower > h3, .nn {
2023-04-09 22:50:40 +02:00
max-width: 900px;
margin-left: calc(50% - 450px);
}
2022-09-26 23:42:42 +02:00
}
@media screen and (min-width: 1200px) {
.nn1200 {
max-width: 1200px;
margin-left: calc(50% - 600px);
}
}
2022-09-26 07:46:56 +02:00
a, a:visited {
text-decoration: none;
2023-03-21 20:21:53 +01:00
color: $blue;
}
a:hover, a:focus {
text-decoration: underline;
2022-09-26 07:46:56 +02:00
}
.sr-only {
position: absolute;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip: rect(0, 0, 0, 0);
border: 0;
}
2022-09-26 09:15:39 +02:00
.big-logo {
max-width: 100%;
}
2022-09-26 07:46:56 +02:00
.cities {
2023-03-20 23:04:27 +01:00
color: $grey1;
font-size: 135%;
font-family: Neucha;
2023-04-11 10:10:50 +02:00
display: flex;
align-items: center;
justify-content: space-between;
}
.cities p {
width: 33%;
}
.cities .city {
margin: 0 0.5em;
2023-04-11 10:10:50 +02:00
}
.madein-wrapper {
height: 120px;
margin-top: 32px;
2022-09-26 07:46:56 +02:00
}
.madein {
2023-04-11 10:10:50 +02:00
width: 192px;
transform: rotate(-30deg);
2022-09-26 07:46:56 +02:00
}
.slogan1 {
font-size: 400%;
font-family: Neucha;
2022-09-26 07:46:56 +02:00
}
2022-09-26 09:15:39 +02:00
.slogan2 {
font-size: 300%;
font-family: Neucha;
2022-09-26 09:15:39 +02:00
}
2023-03-20 23:04:27 +01:00
.slogan3 {
font-size: 200%;
font-family: Neucha;
font-variant: small-caps;
}
2023-03-21 20:21:53 +01:00
h1 {
font-size: 240%;
font-family: Neucha;
font-weight: normal;
}
h2 {
font-size: 170%;
font-family: Neucha;
font-weight: normal;
}
h3 {
font-size: 130%;
font-family: Neucha;
font-weight: normal;
}
2023-04-15 09:55:10 +02:00
.title-bar {
font-family: Neucha;
font-size: 42px;
background: linear-gradient(0.25turn, $blue, $violet);
color: #fff;
margin-top: 16px;
margin-bottom: 16px;
}
.title-bar2 {
font-family: Neucha;
font-size: 36px;
margin-top: 16px;
margin-bottom: 16px;
}
.title-bar2::after {
content: "";
display: block;
height: 1px;
background: linear-gradient(0.25turn, $blue, $violet);
}
2023-04-26 11:24:49 +02:00
#map {
width: 100%;
height: 600px;
max-height: calc(100vh - 64px);
}
2023-04-26 18:58:04 +02:00
@media (prefers-color-scheme: light), (prefers-color-scheme: no-preference) {
html {
background: radial-gradient(circle at 100%, rgba(2, 148, 217, 0.2) 20%, white);
}
}
@media (prefers-color-scheme: dark) {
html {
background-color: black;
color: white;
}
#dev-warning {
color: black;
}
.cities {
color: $grey2;
}
}