Startpoint widget implemented

This commit is contained in:
Mal
2020-02-04 23:03:33 +01:00
parent d46b195269
commit fa648ae730
12 changed files with 231 additions and 12 deletions

View File

@@ -65,7 +65,6 @@ body {
#widget-bar {
position: fixed;
display: flex;
flex-flow: wrap row;
top: 32px;
left: 0;
@@ -76,6 +75,10 @@ body {
box-shadow: 0 0 20px black;
}
.widget-container {
margin-bottom: 20px;
}
.widget-disabled {
filter: saturate(0);
}
@@ -117,6 +120,16 @@ body {
display: none;
}
#entrance-picker {
width: 96px;
height: 96px;
border: 1px solid black;
background-image: url("graphics/entrance-point.svg");
background-size: contain;
background-repeat: no-repeat;
background-position: center center;
cursor: pointer;
}
.field, .button-tile {
border: 0;
@@ -126,7 +139,11 @@ body {
cursor: pointer;
display: inline-flex;
}
.entrance {
background-image: url("graphics/entrance-point.svg") !important;
background-size: contain !important;
background-position: center bottom !important;
}
.button-tile {
margin: 2px;
}