Ekapp/skolehjem/resources/sass/app/general/_sizes.scss

60 lines
520 B
SCSS

* {
font-family: $font-family-sans-serif;
}
html, body {
width: 100%;
margin: 0;
padding: 0;
height: 100%;
}
::placeholder {
opacity: 1;
}
a {
color: #000000;
text-decoration: none;
}
.w-100 {
width: 100%;
}
.w-85 {
width: 85%;
}
.w-75 {
width: 75%;
}
.w-50 {
width: 50%;
}
.w-25 {
width: 25%;
}
.w-15 {
width: 15%;
}
.h-100 {
height: 100%;
}
.h-90 {
height: 90%;
}
.h-10 {
height: 10%;
}
.bg-sde-blue {
background-color: $sde-blue;
}