forked from jseidelin/pixastic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
45 lines (40 loc) · 772 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
#original-image,
#output-canvas {
display : block;
float : left;
margin : 10px;
}
ul#testlist {
display : block;
float : left;
width : 300px;
list-style : none;
padding : 0;
margin : 10px;
max-height : 512px;
overflow : auto;
}
ul#testlist li {
margin-bottom : 5px;
background-color : rgb(200,220,255);
padding : 4px;
font-family : sans-serif;
font-size : 14px;
cursor : pointer;
}
ul#testlist li:hover {
background-color : rgb(200,240,255);
}
div#progress {
float : left;
width : 20px;
height : 512px;
margin-top : 10px;
box-sizing : border-box;
border : 1px solid black;
}
div#progress div {
width : 100%;
height : 0;
background-color : rgb(190,220,190);
}