website/sass/css/base.scss

87 lines
1.1 KiB
SCSS
Raw Normal View History

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
@font-face {
font-family: Amatic;
src: url("/fonts/AmaticSC-Bold.woff2");
}
@font-face {
font-family: LunaSans;
src: url("/fonts/LunaSans-Regular.ttf");
}
html, body {
margin: 0;
padding: 0;
font-family: LunaSans;
}
2022-09-26 23:24:15 +02:00
@import "header";
@import "footer";
@import "services";
@import "process";
2022-09-26 07:46:56 +02:00
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;
}
2022-09-26 23:42:42 +02:00
main.narrower {
max-width: 900px;
margin: auto;
}
2022-09-26 07:46:56 +02:00
a, a:visited {
text-decoration: none;
}
.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 {
font-size: 18px;
}
.madein {
width: 256px;
}
.slogan1 {
font-size: 400%;
font-family: Amatic;
}
2022-09-26 09:15:39 +02:00
.slogan2 {
font-size: 300%;
font-family: Amatic;
}