Merge branch 'master' of https://github.com/sebathefox/skolehjem-webapp into master
This commit is contained in:
Vendored
+137
-2
@@ -131,6 +131,10 @@ input.appinput {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.flex-column {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.d-none {
|
||||
display: none !important;
|
||||
}
|
||||
@@ -201,8 +205,40 @@ nav {
|
||||
color: darkgrey;
|
||||
}
|
||||
|
||||
.position-fixed {
|
||||
position: fixed;
|
||||
}
|
||||
|
||||
.top-0 {
|
||||
top: 0;
|
||||
}
|
||||
|
||||
.zindex-100 {
|
||||
z-index: 100;
|
||||
}
|
||||
|
||||
.border-none {
|
||||
border: none;
|
||||
}
|
||||
|
||||
.outline-none {
|
||||
outline: none;
|
||||
}
|
||||
|
||||
.overflow-visible {
|
||||
overflow: visible;
|
||||
}
|
||||
|
||||
ol {
|
||||
padding-right: 8px;
|
||||
}
|
||||
|
||||
.text-white {
|
||||
color: #ffffff;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.text-black {
|
||||
color: #000;
|
||||
}
|
||||
|
||||
.text-center {
|
||||
@@ -245,6 +281,26 @@ span.toggle__text.sde-blue {
|
||||
font-size: 5vw;
|
||||
}
|
||||
|
||||
.justify-content-center {
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.justify-unset {
|
||||
justify-content: unset;
|
||||
}
|
||||
|
||||
.justify-content-space {
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.event-text-shadow {
|
||||
text-shadow: 2px 2px 2px #00788A;
|
||||
}
|
||||
|
||||
.font-20px {
|
||||
font-size: 20px;
|
||||
}
|
||||
|
||||
.m-auto {
|
||||
margin: auto;
|
||||
}
|
||||
@@ -281,14 +337,46 @@ span.toggle__text.sde-blue {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
.pl-0 {
|
||||
padding-left: 0;
|
||||
}
|
||||
|
||||
.pr-0 {
|
||||
padding-right: 0;
|
||||
}
|
||||
|
||||
.pb-0 {
|
||||
padding-bottom: 0;
|
||||
}
|
||||
|
||||
.pt-0 {
|
||||
padding-top: 0;
|
||||
}
|
||||
|
||||
.m-none {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.p-none {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.ml-1 {
|
||||
margin-left: 0.75rem;
|
||||
}
|
||||
|
||||
.pl-1 {
|
||||
padding-left: 0.75rem;
|
||||
}
|
||||
|
||||
.mr-1 {
|
||||
margin-right: 0.75rem;
|
||||
}
|
||||
|
||||
.pr-1 {
|
||||
padding-right: 0.75rem;
|
||||
}
|
||||
|
||||
.mb-1 {
|
||||
margin-bottom: 0.75rem;
|
||||
}
|
||||
@@ -297,6 +385,10 @@ span.toggle__text.sde-blue {
|
||||
margin-top: 0.75rem;
|
||||
}
|
||||
|
||||
.pt-1 {
|
||||
padding-top: 0.75rem;
|
||||
}
|
||||
|
||||
.ml-2 {
|
||||
margin-left: 3rem;
|
||||
}
|
||||
@@ -309,10 +401,18 @@ span.toggle__text.sde-blue {
|
||||
margin-bottom: 3rem;
|
||||
}
|
||||
|
||||
.mb-2rem {
|
||||
margin-bottom: 2rem;
|
||||
}
|
||||
|
||||
.mt-2 {
|
||||
margin-top: 3rem;
|
||||
}
|
||||
|
||||
.mt-2rem {
|
||||
margin-top: 2rem;
|
||||
}
|
||||
|
||||
.ml-3 {
|
||||
margin-left: 3rem;
|
||||
}
|
||||
@@ -329,6 +429,10 @@ span.toggle__text.sde-blue {
|
||||
margin-top: 4.75rem;
|
||||
}
|
||||
|
||||
.ml-4px {
|
||||
margin-left: 4px;
|
||||
}
|
||||
|
||||
* {
|
||||
font-family: "Titillium Web";
|
||||
}
|
||||
@@ -358,7 +462,6 @@ body {
|
||||
}
|
||||
|
||||
a {
|
||||
color: #000000;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
@@ -386,6 +489,18 @@ a {
|
||||
width: 15%;
|
||||
}
|
||||
|
||||
.w-1em {
|
||||
width: 1em;
|
||||
}
|
||||
|
||||
.w-6em {
|
||||
width: 6em;
|
||||
}
|
||||
|
||||
.w-7em {
|
||||
width: 7em;
|
||||
}
|
||||
|
||||
.h-100 {
|
||||
height: 100%;
|
||||
}
|
||||
@@ -402,6 +517,10 @@ a {
|
||||
background-color: #00788a;
|
||||
}
|
||||
|
||||
.bg-white {
|
||||
background-color: white;
|
||||
}
|
||||
|
||||
.block-container {
|
||||
padding: 0 8px;
|
||||
}
|
||||
@@ -430,6 +549,22 @@ a {
|
||||
margin-left: 8px;
|
||||
}
|
||||
|
||||
.lh-2 {
|
||||
line-height: 2rem;
|
||||
}
|
||||
|
||||
.bs-cover {
|
||||
background-size: cover;
|
||||
}
|
||||
|
||||
.bp-center {
|
||||
background-position: center;
|
||||
}
|
||||
|
||||
.resize-vertical {
|
||||
resize: vertical;
|
||||
}
|
||||
|
||||
.toggle {
|
||||
--uiToggleSize: var(--toggleSize, 20px);
|
||||
--uiToggleIndent: var(--toggleIndent, .4em);
|
||||
|
||||
Vendored
+141
-2
@@ -131,6 +131,10 @@ input.appinput {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.flex-column {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.d-none {
|
||||
display: none !important;
|
||||
}
|
||||
@@ -201,8 +205,40 @@ nav {
|
||||
color: darkgrey;
|
||||
}
|
||||
|
||||
.position-fixed {
|
||||
position: fixed;
|
||||
}
|
||||
|
||||
.top-0 {
|
||||
top: 0;
|
||||
}
|
||||
|
||||
.zindex-100 {
|
||||
z-index: 100;
|
||||
}
|
||||
|
||||
.border-none {
|
||||
border: none;
|
||||
}
|
||||
|
||||
.outline-none {
|
||||
outline: none;
|
||||
}
|
||||
|
||||
.overflow-visible {
|
||||
overflow: visible;
|
||||
}
|
||||
|
||||
ol {
|
||||
padding-right: 8px;
|
||||
}
|
||||
|
||||
.text-white {
|
||||
color: #ffffff;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.text-black {
|
||||
color: #000;
|
||||
}
|
||||
|
||||
.text-center {
|
||||
@@ -245,6 +281,26 @@ span.toggle__text.sde-blue {
|
||||
font-size: 5vw;
|
||||
}
|
||||
|
||||
.justify-content-center {
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.justify-unset {
|
||||
justify-content: unset;
|
||||
}
|
||||
|
||||
.justify-content-space {
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.event-text-shadow {
|
||||
text-shadow: 2px 2px 2px #00788A;
|
||||
}
|
||||
|
||||
.font-20px {
|
||||
font-size: 20px;
|
||||
}
|
||||
|
||||
.m-auto {
|
||||
margin: auto;
|
||||
}
|
||||
@@ -281,14 +337,46 @@ span.toggle__text.sde-blue {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
.pl-0 {
|
||||
padding-left: 0;
|
||||
}
|
||||
|
||||
.pr-0 {
|
||||
padding-right: 0;
|
||||
}
|
||||
|
||||
.pb-0 {
|
||||
padding-bottom: 0;
|
||||
}
|
||||
|
||||
.pt-0 {
|
||||
padding-top: 0;
|
||||
}
|
||||
|
||||
.m-none {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.p-none {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.ml-1 {
|
||||
margin-left: 0.75rem;
|
||||
}
|
||||
|
||||
.pl-1 {
|
||||
padding-left: 0.75rem;
|
||||
}
|
||||
|
||||
.mr-1 {
|
||||
margin-right: 0.75rem;
|
||||
}
|
||||
|
||||
.pr-1 {
|
||||
padding-right: 0.75rem;
|
||||
}
|
||||
|
||||
.mb-1 {
|
||||
margin-bottom: 0.75rem;
|
||||
}
|
||||
@@ -297,6 +385,10 @@ span.toggle__text.sde-blue {
|
||||
margin-top: 0.75rem;
|
||||
}
|
||||
|
||||
.pt-1 {
|
||||
padding-top: 0.75rem;
|
||||
}
|
||||
|
||||
.ml-2 {
|
||||
margin-left: 3rem;
|
||||
}
|
||||
@@ -309,10 +401,18 @@ span.toggle__text.sde-blue {
|
||||
margin-bottom: 3rem;
|
||||
}
|
||||
|
||||
.mb-2rem {
|
||||
margin-bottom: 2rem;
|
||||
}
|
||||
|
||||
.mt-2 {
|
||||
margin-top: 3rem;
|
||||
}
|
||||
|
||||
.mt-2rem {
|
||||
margin-top: 2rem;
|
||||
}
|
||||
|
||||
.ml-3 {
|
||||
margin-left: 3rem;
|
||||
}
|
||||
@@ -329,6 +429,10 @@ span.toggle__text.sde-blue {
|
||||
margin-top: 4.75rem;
|
||||
}
|
||||
|
||||
.ml-4px {
|
||||
margin-left: 4px;
|
||||
}
|
||||
|
||||
* {
|
||||
font-family: "Titillium Web";
|
||||
}
|
||||
@@ -358,7 +462,6 @@ body {
|
||||
}
|
||||
|
||||
a {
|
||||
color: #000000;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
@@ -386,6 +489,18 @@ a {
|
||||
width: 15%;
|
||||
}
|
||||
|
||||
.w-1em {
|
||||
width: 1em;
|
||||
}
|
||||
|
||||
.w-6em {
|
||||
width: 6em;
|
||||
}
|
||||
|
||||
.w-7em {
|
||||
width: 7em;
|
||||
}
|
||||
|
||||
.h-100 {
|
||||
height: 100%;
|
||||
}
|
||||
@@ -402,6 +517,10 @@ a {
|
||||
background-color: #00788a;
|
||||
}
|
||||
|
||||
.bg-white {
|
||||
background-color: white;
|
||||
}
|
||||
|
||||
.block-container {
|
||||
padding: 0 8px;
|
||||
}
|
||||
@@ -430,6 +549,22 @@ a {
|
||||
margin-left: 8px;
|
||||
}
|
||||
|
||||
.lh-2 {
|
||||
line-height: 2rem;
|
||||
}
|
||||
|
||||
.bs-cover {
|
||||
background-size: cover;
|
||||
}
|
||||
|
||||
.bp-center {
|
||||
background-position: center;
|
||||
}
|
||||
|
||||
.resize-vertical {
|
||||
resize: vertical;
|
||||
}
|
||||
|
||||
.toggle {
|
||||
--uiToggleSize: var(--toggleSize, 20px);
|
||||
--uiToggleIndent: var(--toggleIndent, .4em);
|
||||
@@ -7125,3 +7260,7 @@ main {
|
||||
}
|
||||
}
|
||||
|
||||
iframe {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
|
||||
Vendored
+141
-2
@@ -131,6 +131,10 @@ input.appinput {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.flex-column {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.d-none {
|
||||
display: none !important;
|
||||
}
|
||||
@@ -201,8 +205,40 @@ nav {
|
||||
color: darkgrey;
|
||||
}
|
||||
|
||||
.position-fixed {
|
||||
position: fixed;
|
||||
}
|
||||
|
||||
.top-0 {
|
||||
top: 0;
|
||||
}
|
||||
|
||||
.zindex-100 {
|
||||
z-index: 100;
|
||||
}
|
||||
|
||||
.border-none {
|
||||
border: none;
|
||||
}
|
||||
|
||||
.outline-none {
|
||||
outline: none;
|
||||
}
|
||||
|
||||
.overflow-visible {
|
||||
overflow: visible;
|
||||
}
|
||||
|
||||
ol {
|
||||
padding-right: 8px;
|
||||
}
|
||||
|
||||
.text-white {
|
||||
color: #ffffff;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.text-black {
|
||||
color: #000;
|
||||
}
|
||||
|
||||
.text-center {
|
||||
@@ -245,6 +281,26 @@ span.toggle__text.sde-blue {
|
||||
font-size: 5vw;
|
||||
}
|
||||
|
||||
.justify-content-center {
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.justify-unset {
|
||||
justify-content: unset;
|
||||
}
|
||||
|
||||
.justify-content-space {
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.event-text-shadow {
|
||||
text-shadow: 2px 2px 2px #00788A;
|
||||
}
|
||||
|
||||
.font-20px {
|
||||
font-size: 20px;
|
||||
}
|
||||
|
||||
.m-auto {
|
||||
margin: auto;
|
||||
}
|
||||
@@ -281,14 +337,46 @@ span.toggle__text.sde-blue {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
.pl-0 {
|
||||
padding-left: 0;
|
||||
}
|
||||
|
||||
.pr-0 {
|
||||
padding-right: 0;
|
||||
}
|
||||
|
||||
.pb-0 {
|
||||
padding-bottom: 0;
|
||||
}
|
||||
|
||||
.pt-0 {
|
||||
padding-top: 0;
|
||||
}
|
||||
|
||||
.m-none {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.p-none {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.ml-1 {
|
||||
margin-left: 0.75rem;
|
||||
}
|
||||
|
||||
.pl-1 {
|
||||
padding-left: 0.75rem;
|
||||
}
|
||||
|
||||
.mr-1 {
|
||||
margin-right: 0.75rem;
|
||||
}
|
||||
|
||||
.pr-1 {
|
||||
padding-right: 0.75rem;
|
||||
}
|
||||
|
||||
.mb-1 {
|
||||
margin-bottom: 0.75rem;
|
||||
}
|
||||
@@ -297,6 +385,10 @@ span.toggle__text.sde-blue {
|
||||
margin-top: 0.75rem;
|
||||
}
|
||||
|
||||
.pt-1 {
|
||||
padding-top: 0.75rem;
|
||||
}
|
||||
|
||||
.ml-2 {
|
||||
margin-left: 3rem;
|
||||
}
|
||||
@@ -309,10 +401,18 @@ span.toggle__text.sde-blue {
|
||||
margin-bottom: 3rem;
|
||||
}
|
||||
|
||||
.mb-2rem {
|
||||
margin-bottom: 2rem;
|
||||
}
|
||||
|
||||
.mt-2 {
|
||||
margin-top: 3rem;
|
||||
}
|
||||
|
||||
.mt-2rem {
|
||||
margin-top: 2rem;
|
||||
}
|
||||
|
||||
.ml-3 {
|
||||
margin-left: 3rem;
|
||||
}
|
||||
@@ -329,6 +429,10 @@ span.toggle__text.sde-blue {
|
||||
margin-top: 4.75rem;
|
||||
}
|
||||
|
||||
.ml-4px {
|
||||
margin-left: 4px;
|
||||
}
|
||||
|
||||
* {
|
||||
font-family: "Titillium Web";
|
||||
}
|
||||
@@ -358,7 +462,6 @@ body {
|
||||
}
|
||||
|
||||
a {
|
||||
color: #000000;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
@@ -386,6 +489,18 @@ a {
|
||||
width: 15%;
|
||||
}
|
||||
|
||||
.w-1em {
|
||||
width: 1em;
|
||||
}
|
||||
|
||||
.w-6em {
|
||||
width: 6em;
|
||||
}
|
||||
|
||||
.w-7em {
|
||||
width: 7em;
|
||||
}
|
||||
|
||||
.h-100 {
|
||||
height: 100%;
|
||||
}
|
||||
@@ -402,6 +517,10 @@ a {
|
||||
background-color: #00788a;
|
||||
}
|
||||
|
||||
.bg-white {
|
||||
background-color: white;
|
||||
}
|
||||
|
||||
.block-container {
|
||||
padding: 0 8px;
|
||||
}
|
||||
@@ -430,6 +549,22 @@ a {
|
||||
margin-left: 8px;
|
||||
}
|
||||
|
||||
.lh-2 {
|
||||
line-height: 2rem;
|
||||
}
|
||||
|
||||
.bs-cover {
|
||||
background-size: cover;
|
||||
}
|
||||
|
||||
.bp-center {
|
||||
background-position: center;
|
||||
}
|
||||
|
||||
.resize-vertical {
|
||||
resize: vertical;
|
||||
}
|
||||
|
||||
.toggle {
|
||||
--uiToggleSize: var(--toggleSize, 20px);
|
||||
--uiToggleIndent: var(--toggleIndent, .4em);
|
||||
@@ -7125,6 +7260,10 @@ main {
|
||||
}
|
||||
}
|
||||
|
||||
iframe {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
html,
|
||||
body {
|
||||
background-color: #2F3136;
|
||||
|
||||
Reference in New Issue
Block a user