-
Notifications
You must be signed in to change notification settings - Fork 9
/
style.css
57 lines (51 loc) · 1018 Bytes
/
style.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
html,body {
font-family: "Lucida Grande", "Lucida Sans", Helvetica, sans-serif;
font-size: 12px;
padding: 0;
background-color: #ededed;
-webkit-font-smoothing: antialiased;
}
#imageWrapper {
text-align: center;
margin-bottom: 2em;
}
#imageWell {
background-color: #ededed;
display: inline-block;
padding: 1em;
border: 1px solid #7c7c7c;
box-shadow: 0 0.2em 0.2em #AAA inset;
border-radius: 0.5em;
min-width: 320px;
min-height: 240px;
max-width: 90%;
max-height: 768px;
overflow: scroll;
}
dl.preferences {
text-align: right;
width: 520px;
margin: 0 auto;
padding: 1em;
background-color: #e5e5e5;
box-shadow: 0 0.2em 0.2em #AAA inset;
border-radius: 0.5em;
}
dl.preferences dt {
text-align: right;
clear: left;
float: left;
width: 250px;
margin: 0;
padding: 5px;
}
dl.preferences dd {
text-align: left;
float: left;
width: 250px;
margin: 0;
padding: 5px;
}
dl.preferences dd label {
padding-left: 0.2em;
}