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: Addressed Julian's comments Created Aug. 24, 2016, 11:48 a.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« pages/uninstalled.tmpl ('K') | « 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, .notification
juliandoucette 2016/09/24 16:49:34 NIT: Shouldn't this be on the next line?
saroyanm 2016/09/27 12:10:14 Done.
99 { 110 {
100 padding: 20px 100px; 111 padding: 20px 100px;
101 margin-bottom: 30px; 112 margin-bottom: 30px;
102 } 113 }
103 114
115 .notification
116 {
117 margin: 0px;
118 text-align: center;
119 }
120
104 section.highlighted 121 section.highlighted
105 { 122 {
106 background-image: url(/img/background-blue.png); 123 background-image: url(/img/background-blue.png);
107 color: #FFFFFF; 124 color: #FFFFFF;
108 } 125 }
109 126
110 section.highlighted a 127 section.highlighted a
111 { 128 {
112 color: #FFFFFF; 129 color: #FFFFFF;
113 } 130 }
(...skipping 26 matching lines...) Expand all
140 section li input 157 section li input
141 { 158 {
142 vertical-align: middle; 159 vertical-align: middle;
143 -webkit-margin-end: 10px; 160 -webkit-margin-end: 10px;
144 -moz-margin-end: 10px; 161 -moz-margin-end: 10px;
145 } 162 }
146 163
147 section li textarea 164 section li textarea
148 { 165 {
149 display: block; 166 display: block;
150 margin-top: 10px;
151 padding: 5px; 167 padding: 5px;
152 width: 250px; 168 width: 250px;
153 height: 50px; 169 height: 50px;
154 vertical-align: middle; 170 vertical-align: middle;
155 font-size: 14px; 171 font-size: 14px;
156 } 172 }
157 173
174 section li ul
175 {
176 margin-top: 10px;
177 margin-bottom: 0px;
178 }
179
158 section .subheader 180 section .subheader
159 { 181 {
160 margin-top: 0px; 182 margin-top: 0px;
161 text-align: center; 183 text-align: center;
162 } 184 }
163 185
164 section .error-label 186 section .error-label
165 { 187 {
166 display: none; 188 display: none;
167 color: #ffafaf; 189 color: #ffafaf;
168 margin: 0px 12px; 190 margin: 0px 12px;
169 } 191 }
170 192
171 form button 193 button, .notification a
juliandoucette 2016/09/24 16:49:34 NIT: Shouldn't this be on the next line?
saroyanm 2016/09/27 12:10:14 Done.
172 { 194 {
173 min-width: 138px; 195 min-width: 138px;
196 border: 0px;
197 color: #ffffff;
198 cursor: pointer;
199 }
200
201 section.highlighted form button
juliandoucette 2016/09/24 16:49:34 NIT: We don't need "section" here?
saroyanm 2016/09/27 12:10:14 Done.
202 {
174 height: 42px; 203 height: 42px;
175 background-color: #37506d; 204 background-color: #37506d;
176 border: 0px;
177 cursor: pointer;
178 color: #ffffff;
179 } 205 }
180 206
181 form.error button 207 form.error button
182 { 208 {
183 border: solid 2px #ffafaf; 209 border: solid 2px #ffafaf;
184 } 210 }
185 211
186 form.error .error-label 212 form.error .error-label
187 { 213 {
188 display: inline-block; 214 display: inline-block;
189 } 215 }
190 216
217 .notification a
218 {
219 display: inline-block;
220 padding: 14px 0px;
221 margin: 0px 10px;
222 background-color: #5cb85c;
223 vertical-align: middle;
224 font-size: 14px;
225 text-decoration: none;
226 }
227
228 .notification a:hover
229 {
230 background-color: #47a447;
231 }
232
191 form input[type="checkbox"] 233 form input[type="checkbox"]
192 { 234 {
193 margin: 0px; 235 margin: 0px;
194 -webkit-margin-end: 10px; 236 -webkit-margin-end: 10px;
195 -moz-margin-end: 10px; 237 -moz-margin-end: 10px;
196 } 238 }
197 239
198 .disclaimer 240 .disclaimer
199 { 241 {
200 margin: 14px 0px; 242 margin: 14px 0px;
201 font-size: 14px; 243 font-size: 14px;
202 color: #a9bdd5; 244 color: #a9bdd5;
203 } 245 }
204 246
205 .hidden 247 .hidden
206 { 248 {
207 display: none; 249 display: none;
208 } 250 }
209 251
210 footer 252 footer
211 { 253 {
212 margin: 0 auto 30px; 254 margin: 0 auto 30px;
213 max-width: 960px; 255 max-width: 960px;
214 text-align: center; 256 text-align: center;
215 } 257 }
OLDNEW
« pages/uninstalled.tmpl ('K') | « pages/uninstalled.tmpl ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld