forked from helena2505/alg_vis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
menu_style.css
83 lines (73 loc) · 1.57 KB
/
menu_style.css
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
73
74
75
76
77
78
79
80
81
82
83
/* Structures menu column */
#structures-col {
height: 100%;
width: 18%;
padding: 0px;
float: right;
background-color: white;
overflow: auto;
font-family: 10pt 'Roboto', sans-serif;
color: #333;
border: 4px black;
-webkit-box-shadow: 0px 0px 5px rgba(255,255,255,0.9);
box-shadow: 0px 0px 7px rgba(255,255,255,0.9);
}
/* Structures menu */
.menu {
list-style-type: none;
box-sizing: border-box;
padding-left: 8px;
}
/* Primitives editor menu */
.editor {
list-style-type: none;
}
/* Menu list item */
.menu li {
padding-right: 0em;
padding-left: 8px;
padding-top: 9px;
margin: 5px 0;
transition: .4s;
width: 94%;
height: auto;
border-radius: 5px;
font-family: 'Roboto', sans-serif;
}
/* Menu list item div */
.menu li div {
text-align: left;
width: 94%;
}
/* Menu list item on hover */
.menu li:hover {
-webkit-box-shadow: 0px 0px 5px rgba(255,255,255,0.9);
box-shadow: 0px 0px 7px rgba(255,255,255,0.9);
background-color: rgb(245, 245, 255);
cursor: pointer;
transform: scale(1.03);
}
.one-container {
text-align: left;
padding: 3%;
background-color: lavender;
}
/* Add a new container button */
#add_a_container {
background-color: lavender;
display: inline-block;
text-align: center;
width: 12%;
font-size: larger;
border-radius: 50%;
}
#add-a-container-div {
display: flex;
justify-content: center;
align-items: center;
}
#add-a-container-div:hover {
cursor: pointer;
color: white;
/*transform: scale(1.03);*/
}