Dashboard

* finishes work on dashboard
This commit is contained in:
mipel
2021-07-07 13:46:33 +02:00
parent 3277896ff1
commit 7cbcdc62ae
4 changed files with 145 additions and 7 deletions

View File

@@ -7,6 +7,21 @@ Declare some basic colours
--rlp-gray-light: #c6c6c6;
}
.rlp-gl{
background-color: var(--rlp-gray-light);
color:white;
}
.rlp-gd{
background-color: var(--rlp-gray-dark);
color:white;
}
.rlp-r{
background-color: var(--rlp-red);
color:white;
}
html {
position: relative;
min-height: 100%;
@@ -81,4 +96,21 @@ nav{
font-size: 12px;
max-height: 150px;
overflow: auto;
}
.qs-box{
background-color: var(--rlp-red);
color: white;
font-size: 3rem;
width: 8rem;
height: 8rem;
}
.btn-default{
color: white;
background-color: var(--rlp-red);
border-radius: 0;
}
.btn-default:hover{
color: var(--rlp-gray-light);
}