implemented editing of layout in browser

This commit is contained in:
Stephan Richter
2020-09-12 21:21:02 +02:00
parent 7607a75d74
commit 00eb6145da
7 changed files with 100 additions and 9 deletions

View File

@@ -1,3 +1,8 @@
body{
background: gray;
width: 100%;
height: 100%;
}
.tile{
border: 1px solid black;
width: 30px;
@@ -26,17 +31,20 @@ svg text{
font-size: 12px;
}
.menu .tile .list{
.menu .list{
display: none;
}
.menu .tile:hover .list{
.menu div:hover .list{
display: inherit;
}
.menu .tile .list{
position: fixed;
right: 0;
height: 30px;
left: 0;
bottom: 40px;
display: inline-block;
}
.menu .tile .list .tile{