File size: 940 Bytes
d5bfab8 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 |
#main {
display: flex;
flex-direction: row;
background-color: #dfe6e9;
}
#menu {
display: flex;
flex-direction: column;
width: 300px;
min-width: 300px;
height: 100vh;
margin-right: 10px;
overflow-y: scroll;
overflow-x: hidden;
background-color: #2d3436;
}
#menu p {
margin-left: 10px;
color: white;
text-align: center;
}
i {
color:aqua;
}
#visualization {
display: flex;
flex-direction: row;
}
#show_grid {
display: flex;
flex-direction: column;
}
#grid_control {
display: flex;
flex-direction: row;
width: 500px;
justify-content: left;
}
#aux_grid {
display: flex;
flex-direction: column;
width: 300px;
}
.grid {
margin: 5px;
}
a {
text-decoration: none;
font-size: 25px;
color: #818181;
display: block;
margin-bottom: 5px;
}
a:hover {
color: #f1f1f1;
}
label {
white-space: pre-wrap;
}
|