-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
54 lines (54 loc) · 776 Bytes
/
index.css
File metadata and controls
54 lines (54 loc) · 776 Bytes
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
body{
padding: 0;
margin: 0;
}
#pixdraw{
z-index: 0;
}
#toolbar{
position: absolute;
top: 0;
left: 0;
z-index: 0;
border: 1px solid black;
width: 70px;
height: 401px;
background-color: white;
}
#toolbar button{
position: relative;
float: left;
top: 5px;
left: 5px;
margin: 2px;
width: 25px;
height: 25px;
border: 1px solid black;
}
#share div{
overflow: scroll;
background-color: white;
border: 1px solid black;
width: 600px;
}
.colorpicker{
position: absolute;
z-index: -1;
top: 0;
left: 0;
visibility: hidden;
background-color: white;
border: 1px solid black;
}
#dimmer{
background-color: rgba(0,0,0,0.5);
z-index: 2;
position: absolute;
}
#dimmer #close{
float: right;
width: 1.5em;
height: 1.5em;
font-size: 1.5em;
margin: 0.25em;
}