force-orange-2022/src/app/styles.module.scss
2021-11-27 10:49:23 +01:00

57 lines
1.0 KiB
SCSS
Executable File

@import "../theme/variables";
@import "../theme/mixins";
@import "../theme/main";
.header {
position: relative;
margin: 10px 0 20px;
padding: 4px 0 4px 125px;
background-color: $color-white;
border-top: $border-large;
border-bottom: $border-large;
@include desktop {
margin: 20px 0 35px;
padding: 10px 0 10px 220px;
}
}
.logo {
position: absolute;
top: -10px;
left: 10px;
width: 100px;
height: 60px;
background: url("../app/img/logo-mini.png") no-repeat center center;
background-size: cover;
@include desktop {
width: 181px;
height: 118px;
background: url("../app/img/logo.png") no-repeat;
}
}
.siteName {
margin: 0;
padding: 0;
font-family: $font-pel;
font-size: 1.8em;
@include desktop {
font-size: 2em;
}
a {
font-weight: 400;
text-decoration: none;
color: $color-orange;
text-shadow: 2px 2px 2px $color-black;
}
}
.siteDescription {
font-size: 14px;
color: #555;
}