forked from knipknap/SpiffForm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefault.css
114 lines (92 loc) · 1.55 KB
/
default.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
body,
html {
margin: 0;
padding: 0;
color: #e8ecf0;
background: #85a2a2 url('spiffform/res/noise.png') repeat right top;
}
#wrap {
margin: 0 auto;
width: 1020px;
}
#header {
padding: .8em 2em;
margin-bottom: 15px;
background: #2a5350;
border-bottom: 1px solid #033;
}
#header h1 {
margin: 0;
padding: 0;
}
#center {
float: left;
width: 750px;
}
#sidebar {
color: #000;
float: right;
width: 270px;
}
#buttons {
text-align: center;
}
#buttons label {
display: block;
font-size: 1.4em;
}
#buttons input {
padding: .5em;
margin-bottom: 12px;
}
#sidebar-elements {
display: none;
}
#sidebar-elements h3 {
font-size: 1.3em;
color: #e8ecf0;
background-color: #448782;
padding: .4em;
margin: 0 5px;
}
.ui-elements {
list-style-type: none;
margin: 0;
padding-left: 10px;
padding-bottom: 10px;
}
.ui-elements li {
background-repeat: no-repeat;
background-position: 0 .5em;
padding: .5em 0 .5em 30px;
}
#ui-name {
background-image: url('spiffform/res/entry.png');
}
#ui-entry {
background-image: url('spiffform/res/entry.png');
}
#ui-text {
background-image: url('spiffform/res/textview.png');
}
#ui-button {
background-image: url('spiffform/res/button.png');
}
#ui-checkbox {
background-image: url('spiffform/res/checkbutton.png');
}
#ui-calendar {
background-image: url('spiffform/res/calendar.png');
}
#ui-combo {
background-image: url('spiffform/res/combo.png');
}
#ui-radio {
background-image: url('spiffform/res/radio.png');
}
#ui-separator {
background-image: url('spiffform/res/separator.png');
}
#ui-infobox {
background-image: url('spiffform/res/infobox.png');
}