nuitdelinfo_2021/static/scss/layouts/global.scss

90 lines
1.1 KiB
SCSS
Raw Permalink Normal View History

2021-12-02 22:30:17 +01:00
body{
background-color: $background;
padding: 0;
margin: 0;
}
h1, h2{
@include font-courgette;
}
a{
text-decoration: none;
}
h1{
font-size: 60px;
2021-12-03 00:06:04 +01:00
text-align: center;
margin: 10px 0;
2021-12-03 04:53:31 +01:00
color: $accent;
2021-12-02 22:30:17 +01:00
}
h2{
font-size: 40px;
2021-12-03 04:53:31 +01:00
color: $light;
2021-12-02 22:30:17 +01:00
}
img{
max-width: 100%;
}
a.btn{
display: block;
width: fit-content;
width: -moz-fit-content;
color: $light;
padding: 10px 20px;
border: 2px solid $light;
font-size: 18px;
2021-12-03 00:06:04 +01:00
&--blue{
color: $accent;
border-color: $accent;
}
2021-12-02 22:30:17 +01:00
}
p{
margin: 5px 0;
}
2021-12-03 04:53:31 +01:00
a, p, span, input, input::placeholder, label{
2021-12-02 22:30:17 +01:00
@include font-play;
transition-duration: 0.3s;
color: $light;
}
a:hover{
color: $accent !important;
}
.container {
2021-12-03 00:06:04 +01:00
padding-top: 100px;
2021-12-02 22:30:17 +01:00
padding-right: 15px;
padding-left: 15px;
margin-right: auto;
margin-left: auto;
}
@media (min-width: 768px) {
.container {
width: 750px;
}
}
@media (min-width: 992px) {
.container {
width: 970px;
}
}
@media (min-width: 1200px) {
.container {
width: 1170px;
}
2021-12-03 00:06:04 +01:00
}
section{
padding-bottom: 50px;
}
.map{
width: 75%;
display: block;
margin: auto;
2021-12-02 22:30:17 +01:00
}