OLD | NEW |
---|---|
(Empty) | |
1 body { | |
2 color: black; | |
3 cursor: default; | |
4 font-family: Arial, sans-serif; | |
5 font-size: 14px; | |
6 margin: 0 10px; | |
7 min-width: 47em; | |
8 } | |
9 | |
10 button { | |
11 font-size: 0.9em; | |
12 } | |
13 | |
14 #header { | |
15 border-bottom: 1px solid #000; | |
16 padding-top: 20px; | |
17 } | |
18 | |
19 #about-policy-title { | |
20 -webkit-padding-end: 24px; | |
21 -webkit-user-select: none; | |
22 border-bottom: 1px solid #c6c9ce; | |
23 color: #53637d; | |
24 cursor: pointer; | |
25 font-size: 200%; | |
26 font-weight: normal; | |
27 margin: 0; | |
28 padding-bottom: 14px; | |
29 padding-top: 13px; | |
30 text-shadow: white 0 1px 2px; | |
31 } | |
32 | |
33 #main-content { | |
34 min-height: 100%; | |
35 } | |
36 | |
37 #status-title, | |
38 #policies-title { | |
39 font-size: 120%; | |
40 font-weight: bold; | |
41 width: 65%; | |
42 } | |
43 | |
44 table { | |
45 width: 100%; | |
46 } | |
47 | |
48 section { | |
49 border-bottom: 1px solid #eee; | |
50 margin-top: 17px; | |
51 padding-bottom: 20px; | |
52 width: 100%; | |
53 } | |
54 | |
55 .separator { | |
56 -webkit-box-orient: horizontal; | |
57 display: -webkit-box; | |
58 } | |
59 | |
60 #fetch-policies, | |
61 #unsent-policies-control { | |
62 -webkit-box-flex: 1; | |
63 } | |
64 | |
65 #fetch-policies, | |
66 #unsent-policies-control, | |
67 #search { | |
68 bottom: 3px; | |
69 position: relative; | |
70 } | |
71 | |
72 #fetch-policies-button, | |
73 #checkbox-and-label { | |
74 float: right; | |
James Hawkins
2011/08/11 21:16:30
RTL
simo
2011/08/16 17:36:34
Done.
| |
75 } | |
76 | |
77 #checkbox-and-label { | |
78 padding-right: 20px; | |
James Hawkins
2011/08/11 21:16:30
RTL
simo
2011/08/16 17:36:34
I can't get the checkbox to stay on the right side
| |
79 } | |
80 | |
81 #search-field { | |
82 bottom: 2px; | |
83 position: relative; | |
84 } | |
85 | |
86 #status-pane { | |
87 -webkit-box-flex: 1; | |
88 -webkit-box-orient: horizontal; | |
89 display: -webkit-box; | |
90 margin: 0 10%; | |
91 } | |
92 | |
93 .status-box { | |
94 border: 1px solid #d9d9d9; | |
95 margin: 20px 100px; | |
96 min-height: 140px; | |
97 min-width: 300px; | |
98 overflow: hidden; | |
99 padding: 2px; | |
100 width: 30%; | |
101 } | |
102 | |
103 legend { | |
104 padding: 0.2em 0.5em; | |
105 } | |
106 | |
107 .status-box ul { | |
108 list-style-type: none; | |
109 padding-left: 10px; | |
James Hawkins
2011/08/11 21:16:30
RTL
simo
2011/08/16 17:36:34
Do you mean RTL in terms of internationalization?
| |
110 } | |
111 | |
112 .status-box li { | |
113 padding: 3px; | |
114 } | |
115 | |
116 #no-policies-text { | |
117 font-weight: bold; | |
118 margin: 20px; | |
119 text-align: center; | |
120 } | |
121 | |
122 #policy-table th td { | |
123 border: 1px solid #fff; | |
124 border-collapse: collapse; | |
125 text-align: left; | |
James Hawkins
2011/08/11 21:16:30
RTL
simo
2011/08/16 17:36:34
Do you mean RTL in terms of internationalization?
| |
126 } | |
127 | |
128 #policy-table th { | |
129 background-color: #dadadd; | |
130 padding: 10px; | |
131 } | |
132 | |
133 #policy-table td { | |
134 background-color: #eaeef3; | |
135 padding: 10px; | |
136 width: 20%; | |
137 } | |
138 | |
139 .policy-error { | |
140 background-color: #f0f0f5; | |
141 } | |
OLD | NEW |