-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
57 lines (48 loc) · 1 KB
/
main.css
File metadata and controls
57 lines (48 loc) · 1 KB
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
html, body { padding:0; margin:0; font-family: Helvetica, Arial, sans-serif; color:#555; background-color:#fefefe; }
.column {
width:49%;
float:left;
border-right:1px dotted #ddd;
text-align:center;
}
#info {
margin-top:0;
padding:5px;
background-color:#ddd;
color:#999;
}
.column canvas {
margin:0 auto;
display:block;
}
#image-picker, #footer {
margin:0;
padding:10px 5px 10px 5px;
background-color:#ccc; border-bottom:2px #dedede; display:block; width:100%;
background: linear-gradient(top, #ddd 0%,#ccc 100%);
background: -moz-linear-gradient(top, #ddd 0%, #ccc 100%);
}
#image-picker p {
display:inline;
margin:0 10px 0 0;
}
#image-picker .number-field {
width:30px;
}
#result {
background-color:#FFEC8B;
}
#result .dot {
margin:1px;
}
#footer {
position:absolute;
padding:5px 5px 5px 5px;
bottom:0;
}
#footer p {
font-size:small;
text-align:right;
padding:0 20px 0 0;
margin:0;
}