-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyles.css
53 lines (45 loc) · 818 Bytes
/
styles.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
canvas{
margin: 0;
padding: 0;
z-index: -1;
width: auto;
height: auto;
position: absolute;
cursor: crosshair;
}
.toolbar-wrapper {
z-index: 1;
position: absolute;
margin-top: 5%;
margin-left: 3%;
text-align: center;
width: 60px;
}
.toolbar-main-menu{
background-color: #f0f0f0;
border-radius: 10%;
border: 1px black;
padding: 3px;
margin: 0;
display: block;
text-align: center;
box-shadow: 0 10px 20px rgba(0,0,0,.3);
}
ul{
list-style-type: none;
margin: 2px;
padding: 0;
}
li{
padding: 5px;
margin:1px;
border-radius: 10%;
}
.toolName:hover{
border-radius: 15%;
/* box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.19); */
background-color: #ddd;
}
*, ::after,::before{
box-sizing: inherit;
}