Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: static/css/simple.css

Issue 29348067: Issue 4049 - reinstall button and adbockers list added to uninstallation page (Closed)
Patch Set: And again addressed comments Created Sept. 27, 2016, 12:02 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « pages/uninstalled.tmpl ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 @font-face 1 @font-face
2 { 2 {
3 font-family: "Source Sans Pro"; 3 font-family: "Source Sans Pro";
4 src: url(/fonts/SourceSansPro-Light.woff); 4 src: url(/fonts/SourceSansPro-Light.woff);
5 /* local("Ø") forces using no local font called Source Sans Pro */ 5 /* local("Ø") forces using no local font called Source Sans Pro */
6 src: local("Ø"), url(/fonts/SourceSansPro-Light.woff) format("woff"); 6 src: local("Ø"), url(/fonts/SourceSansPro-Light.woff) format("woff");
7 font-weight: 300; 7 font-weight: 300;
8 font-style: normal; 8 font-style: normal;
9 } 9 }
10 10
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 { 47 {
48 color: #5a84b3; 48 color: #5a84b3;
49 text-decoration: underline; 49 text-decoration: underline;
50 } 50 }
51 51
52 a:hover 52 a:hover
53 { 53 {
54 text-decoration: none; 54 text-decoration: none;
55 } 55 }
56 56
57 fieldset
58 {
59 border: 0px;
60 padding: 0px;
61 }
62
63 li fieldset
64 {
65 padding-top: 10px;
66 }
67
57 header h1 68 header h1
58 { 69 {
59 box-sizing: border-box; 70 box-sizing: border-box;
60 border: dashed 1px #898989; 71 border: dashed 1px #898989;
61 border-left: none; 72 border-left: none;
62 border-right: none; 73 border-right: none;
63 padding: 18px; 74 padding: 18px;
64 margin: 68px auto 20px auto; 75 margin: 68px auto 0px auto;
65 max-width: 960px; 76 max-width: 960px;
66 font-weight: 300; 77 font-weight: 300;
67 font-size: 24px; 78 font-size: 24px;
68 color: #7d7d7d; 79 color: #7d7d7d;
69 text-align: center; 80 text-align: center;
70 } 81 }
71 82
72 header::before 83 header::before
73 { 84 {
74 content: ""; 85 content: "";
(...skipping 13 matching lines...) Expand all
88 margin: 0px auto; 99 margin: 0px auto;
89 margin-bottom: 20px; 100 margin-bottom: 20px;
90 } 101 }
91 102
92 #content 103 #content
93 { 104 {
94 margin: 0px auto; 105 margin: 0px auto;
95 max-width: 960px; 106 max-width: 960px;
96 } 107 }
97 108
98 section 109 section,
110 .notification
99 { 111 {
100 padding: 20px 100px; 112 padding: 20px 100px;
101 margin-bottom: 30px; 113 margin-bottom: 30px;
102 } 114 }
103 115
116 .notification
117 {
118 margin: 0px;
119 text-align: center;
120 }
121
104 section.highlighted 122 section.highlighted
105 { 123 {
106 background-image: url(/img/background-blue.png); 124 background-image: url(/img/background-blue.png);
107 color: #FFFFFF; 125 color: #FFFFFF;
108 } 126 }
109 127
110 section.highlighted a 128 section.highlighted a
111 { 129 {
112 color: #FFFFFF; 130 color: #FFFFFF;
113 } 131 }
(...skipping 26 matching lines...) Expand all
140 section li input 158 section li input
141 { 159 {
142 vertical-align: middle; 160 vertical-align: middle;
143 -webkit-margin-end: 10px; 161 -webkit-margin-end: 10px;
144 -moz-margin-end: 10px; 162 -moz-margin-end: 10px;
145 } 163 }
146 164
147 section li textarea 165 section li textarea
148 { 166 {
149 display: block; 167 display: block;
150 margin-top: 10px;
151 padding: 5px; 168 padding: 5px;
152 width: 250px; 169 width: 250px;
153 height: 50px; 170 height: 50px;
154 vertical-align: middle; 171 vertical-align: middle;
155 font-size: 14px; 172 font-size: 14px;
156 } 173 }
157 174
175 section li ul
176 {
177 margin-top: 10px;
178 margin-bottom: 0px;
179 }
180
158 section .subheader 181 section .subheader
159 { 182 {
160 margin-top: 0px; 183 margin-top: 0px;
161 text-align: center; 184 text-align: center;
162 } 185 }
163 186
164 section .error-label 187 section .error-label
165 { 188 {
166 display: none; 189 display: none;
167 color: #ffafaf; 190 color: #ffafaf;
168 margin: 0px 12px; 191 margin: 0px 12px;
169 } 192 }
170 193
171 form button 194 button,
195 .notification a
172 { 196 {
173 min-width: 138px; 197 min-width: 138px;
198 border: 0px;
199 color: #ffffff;
200 cursor: pointer;
201 }
202
203 .highlighted form button
204 {
174 height: 42px; 205 height: 42px;
175 background-color: #37506d; 206 background-color: #37506d;
176 border: 0px;
177 cursor: pointer;
178 color: #ffffff;
179 } 207 }
180 208
181 form.error button 209 form.error button
182 { 210 {
183 border: solid 2px #ffafaf; 211 border: solid 2px #ffafaf;
184 } 212 }
185 213
186 form.error .error-label 214 form.error .error-label
187 { 215 {
188 display: inline-block; 216 display: inline-block;
189 } 217 }
190 218
219 .notification a
220 {
221 display: inline-block;
222 padding: 14px 0px;
223 margin: 0px 10px;
224 background-color: #5cb85c;
225 vertical-align: middle;
226 font-size: 14px;
227 text-decoration: none;
228 }
229
230 .notification a:hover
231 {
232 background-color: #47a447;
233 }
234
191 form input[type="checkbox"] 235 form input[type="checkbox"]
192 { 236 {
193 margin: 0px; 237 margin: 0px;
194 -webkit-margin-end: 10px; 238 -webkit-margin-end: 10px;
195 -moz-margin-end: 10px; 239 -moz-margin-end: 10px;
196 } 240 }
197 241
198 .disclaimer 242 .disclaimer
199 { 243 {
200 margin: 14px 0px; 244 margin: 14px 0px;
201 font-size: 14px; 245 font-size: 14px;
202 color: #a9bdd5; 246 color: #a9bdd5;
203 } 247 }
204 248
205 .hidden 249 .hidden
206 { 250 {
207 display: none; 251 display: none;
208 } 252 }
209 253
210 footer 254 footer
211 { 255 {
212 margin: 0 auto 30px; 256 margin: 0 auto 30px;
213 max-width: 960px; 257 max-width: 960px;
214 text-align: center; 258 text-align: center;
215 } 259 }
OLDNEW
« no previous file with comments | « pages/uninstalled.tmpl ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld