-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathmain.css
63 lines (55 loc) · 1.14 KB
/
main.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
.no-select {
-webkit-touch-callout: none; /* iOS Safari */
-webkit-user-select: none; /* Safari */
-khtml-user-select: none; /* Konqueror HTML */
-moz-user-select: none; /* Old versions of Firefox */
-ms-user-select: none; /* Internet Explorer/Edge */
user-select: none; /* Chrome, Opera and Firefox */
}
#editor {
margin: 20px;
cursor: url(pencil.png), crosshair;
}
.right-panel {
z-index: 99;
color: black;
background: white;
position: fixed;
top: 25px;
right: 25px;
margin: 20px;
padding: 30px;
border-style: solid;
border-radius: 5px;
max-width: 500px;
margin: auto;
}
#info {
padding: 10px;
border-style: solid;
border: black;
border-radius: 5px;
}
.palette-picker {
}
#brush {
width: 50px;
}
.color {
padding: 10px;
text-align: center;
margin-left: auto;
margin-right: auto;
margin-bottom: 10px;
display: inline-block;
width: 30px;
height: 30px;
border: black;
border-radius: 5px;
border-style: solid;
vertical-align: middle;
color: white;
}
.selectable {
cursor: pointer;
}