blob: dc95b822d5d1c3e94d960454bf1b9cf3edeb766d (
plain)
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
|
html,body { padding: 0; margin: 0; width: 100%; height: 100%;
font-family: 'Optima',sans-serif;
overflow: hidden;
background: #fcfaf5;
}
::-webkit-scrollbar {
width: 4px;
}
::-webkit-scrollbar-track {
background: transparent;
}
::-webkit-scrollbar-thumb {
width: 4px;
height: 10px;
background: #ddd;
}
.curtain {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(255,255,255,0.9);
}
.curtain .inner {
position: absolute;
top: 20%;
left: 50%;
width: 400px;
padding: 10px;
margin-left: -210px;
background: #fff;
box-shadow: 0 1px 4px #888;
}
#drawing {
position: absolute;
left: 400px;
top: 50px;
}
#palette {
}
|