first good looking version

This commit is contained in:
2020-04-22 15:14:11 +02:00
parent 8bbe280c33
commit 543d8b1501
9 changed files with 50 additions and 26 deletions

View File

@@ -1,7 +1,13 @@
body {
background-color: darkgray;
background-image: url("./../assets/bg.png");
background-size: cover;
user-select: none;
color: white;
font-family: 'Raleway', sans-serif;
}
.center-wrapper{
margin-top: 30%;
margin-top: 25%;
}

View File

@@ -1,5 +1,4 @@
.quick-component {
border: 3px solid green;
width: 70%;
margin: auto;

View File

@@ -1,3 +1,12 @@
.quickCategory-component{
.title{
line-height: 3em;
font-weight: bold;
text-decoration: underline;
}
.children{
line-height: 2em;
}
}

View File

@@ -0,0 +1,9 @@
.quickItem-component{
color: rgba(#ffffff, 0.7);
cursor: pointer;
&:hover {
color: rgba(#ffffff, 1);
}
}