-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.css
117 lines (102 loc) · 2.04 KB
/
main.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
html,body{
background: #806040;
text-align: center;
padding: 0;
margin: 0;
height: 100%;
z-index: 0
}
/* A container wrapping the hole page */
#content{
display: table;
width: 512px;
height: 100%;
margin: auto;
background-color: #ffe0c0
}
/* A simple table for help pages */
table {
width: 448px;
margin: 0;
padding: 0;
border: 0;
}
table tr:nth-child(odd) {
background: #ffd0b0;
}
/* The upper section wrapping the logo and inputs */
#header{
display: table-row;
height: 192px;
background: #ffc080 url(upper-right.png) no-repeat bottom right;
}
/* The big polca banner */
#logo{
margin-top: 24px;
border: 0
}
/* The container wrapping the input form */
#input_bar {
background: url(input-back.png);
width: 452px;
height: 32px;
text-align: center;
margin: auto;
margin-top: 16px
}
/* The container wrapping the input field and the ok button
(inside the input form) */
#input {
display: table;
margin: auto;
padding: 0;
font-size: 16px
}
/* The input field */
#input_box{
position: relative;
left: 2px;
top: 0px;
border: solid #806040;
height: 24px;
width: 318px;
margin: 0;
margin-left: 4px;
margin-right: -1px
}
/* The red button next to the input field */
#ok_btn{
position: relative;
left: -1px;
top: 0px;
height: 32px;
width: 64px;
background: #ff0000;
border: solid #806040;
margin: 0;
cursor: pointer
}
#add
/* The output div */
#result{
display: table-row;
background: url(middle-left.png) no-repeat top left, /* upper left corner */
url(middle-right.png) no-repeat bottom right; /* bottom right corner */
text-align: left
}
#result * :first-child{
margin-top: 32px
}
#result *{
margin-left: 32px
}
#result * *{
margin-left: 0px
}
/* The container of the checkboxes on the bottom */
#options{
display: table-row;
height: 32px;
padding: 8px;
background: #ffc080 url(lower-left.png) no-repeat top left
}