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

119 lines
1.2 KiB
SCSS
Raw Normal View History

2020-06-15 06:56:21 +00:00
* {
font-family: $font-family-sans-serif;
}
html, body {
width: 100%;
margin: 0;
padding: 0;
height: 100%;
}
::placeholder {
opacity: 1;
}
a {
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%;
}
.w-1em {
width: 1em;
}
.w-6em {
width: 6em;
}
.w-7em {
width: 7em;
}
2020-06-15 06:56:21 +00:00
.h-100 {
height: 100%;
}
.h-90 {
height: 90%;
}
.h-10 {
height: 10%;
}
.bg-sde-blue {
background-color: $sde-blue;
}
2020-06-25 12:23:52 +00:00
.bg-white {
background-color: white;
}
2020-06-25 12:23:52 +00:00
.block-container {
padding: 0 8px;
}
.block {
color: white;
padding: 1em 2em;
border-radius: 4px;
background-color: $sde-blue;
}
.links{
position: absolute;
width: 100%;
bottom: 8px;
height: 2rem;
justify-content: center;
}
.link{
height: 2rem;
display: inline-flex;
align-items: center;
align-content: center;
align-self: center;
margin-left: 8px;
}
.lh-2 {
line-height: 2rem;
}
.bs-cover {
background-size: cover;
}
.bp-center {
background-position: center;
}
.resize-vertical {
resize: vertical;;
}