preparing js
44
resources/css/style.css
Normal file
@@ -0,0 +1,44 @@
|
||||
.tile{
|
||||
border: 1px solid black;
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
position: absolute;
|
||||
}
|
||||
|
||||
svg polygon,
|
||||
svg rect{
|
||||
fill:rgb(0,255,255);
|
||||
stroke-width:5;
|
||||
stroke:rgb(0,0,0);
|
||||
}
|
||||
|
||||
svg text{
|
||||
font-size: 50px;
|
||||
}
|
||||
|
||||
.menu{
|
||||
position: fixed;
|
||||
bottom: 40px;
|
||||
}
|
||||
|
||||
.menu .tile{
|
||||
background: white;
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
.menu .tile .list{
|
||||
display: none;
|
||||
}
|
||||
|
||||
.menu .tile:hover .list{
|
||||
position: fixed;
|
||||
right: 0;
|
||||
height: 30px;
|
||||
left: 0;
|
||||
bottom: 40px;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.menu .tile .list .tile{
|
||||
position: relative;
|
||||
}
|
||||
2
resources/js/jquery-3.5.1.slim.min.js
vendored
Normal file
1
resources/js/plan.js
Normal file
@@ -0,0 +1 @@
|
||||
alert('hallo!');
|
||||
3
resources/svg/DiagNE.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg width="100" height="100" viewbox="0 0 100 100">
|
||||
<polygon points="35,0 65,0 100,35 100,65" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 105 B |
3
resources/svg/DiagSW.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg width="100" height="100" viewbox="0 0 100 100">
|
||||
<polygon points="0,35 65,100 35,100 0,65" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 105 B |
3
resources/svg/DiagWN.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg width="100" height="100" viewbox="0 0 100 100">
|
||||
<polygon points="35,0 65,0 0,65 0,35" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 101 B |
3
resources/svg/EndE.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg width="100" height="100" viewbox="0 0 100 100">
|
||||
<rect x="40" y="35" width="60" height="30" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 107 B |
3
resources/svg/EndW.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg width="100" height="100" viewbox="0 0 100 100">
|
||||
<rect x="0" y="35" width="60" height="30" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 106 B |
3
resources/svg/StraightH.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg width="100" height="100" viewbox="0 0 100 100">
|
||||
<rect x="0" y="35" width="100" height="30" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 107 B |
3
resources/svg/StraightV.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg width="100" height="100" viewbox="0 0 100 100">
|
||||
<rect x="35" y="0" width="35" height="100" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 107 B |
4
resources/svg/TurnoutSE.svg
Normal file
@@ -0,0 +1,4 @@
|
||||
<svg width="100" height="100" viewbox="0 0 100 100">
|
||||
<rect x="35" y="0" width="30" height="100" />
|
||||
<polygon points="35,100 100,35 100,65 65,100" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 156 B |
4
resources/svg/TurnoutSW.svg
Normal file
@@ -0,0 +1,4 @@
|
||||
<svg width="100" height="100" viewbox="0 0 100 100">
|
||||
<rect x="35" y="0" width="30" height="100" />
|
||||
<polygon points="0,35 65,100 35,100 0,65" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 152 B |
4
resources/svg/TurnoutWS.svg
Normal file
@@ -0,0 +1,4 @@
|
||||
<svg width="100" height="100" viewbox="0 0 100 100">
|
||||
<rect x="0" y="35" width="100" height="30" />
|
||||
<polygon points="0,35 65,100 35,100 0,65" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 152 B |