Added admin sites

This commit is contained in:
Frederikmillingpytlick
2020-06-15 08:56:21 +02:00
parent 88b7012f69
commit e73e2aacdc
43 changed files with 674 additions and 151 deletions
+65
View File
@@ -0,0 +1,65 @@
main {
max-width: 900px;
display: flex;
flex-direction: column;
justify-content: center;
margin: auto;
padding: 0 1.25rem 0 1.25rem;
}
// Mobile
@media only screen
and (max-width : 900px)
{
main {
max-width: 460px;
display: flex;
flex-direction: column;
justify-content: center;
margin: auto;
padding: 0 1.25rem 0 1.25rem;
}
.brand {
padding: 0 1rem 0 1rem;
margin: 7rem 0 5rem 0;
}
header, #menu {
padding: 1.25rem 1.75rem 0 1.75rem;
}
#menu {
padding-top: 4rem;
}
#menu > a {
color: white;
font-size: 8vw;
font-weight: 600;
display: flex;
align-items: center;
margin-bottom: 1.5rem;
}
#menu > a > img {
height: 1em;
margin-right: 8px;
}
h1 {
font-size: 12vw;
}
h3 {
font-size: 8vw;
}
span {
font-size: 12px;
}
p {
font-size: 4vw;
}
}
+9
View File
@@ -0,0 +1,9 @@
// App
@import '../app/app';
//
// Webapp
//
// Defaults
@import "default";