Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(361)

Side by Side Diff: runtime/bin/vmservice/client/lib/src/elements/css/shared.css

Issue 335463008: Allow Observatory to run as a hosted web service (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 1
2 /* Global styles */ 2 /* Global styles */
3 * { 3 * {
4 margin: 0; 4 margin: 0;
5 padding: 0; 5 padding: 0;
6 font: 400 14px 'Montserrat', sans-serif; 6 font: 400 14px 'Montserrat', sans-serif;
7 color: #333; 7 color: #333;
8 box-sizing: border-box; 8 box-sizing: border-box;
9 } 9 }
10 10
(...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after
201 flex-shrink: 0; 201 flex-shrink: 0;
202 flex-basis: 30%; 202 flex-basis: 30%;
203 } 203 }
204 204
205 .flex-item-40-percent { 205 .flex-item-40-percent {
206 flex-grow: 0; 206 flex-grow: 0;
207 flex-shrink: 0; 207 flex-shrink: 0;
208 flex-basis: 40%; 208 flex-basis: 40%;
209 } 209 }
210 210
211 .flex-item-50-percent {
212 flex-grow: 0;
213 flex-shrink: 0;
214 flex-basis: 50%;
215 }
216
211 .flex-item-60-percent { 217 .flex-item-60-percent {
212 flex-grow: 0; 218 flex-grow: 0;
213 flex-shrink: 0; 219 flex-shrink: 0;
214 flex-basis: 60%; 220 flex-basis: 60%;
215 } 221 }
216 222
217 .flex-item-70-percent { 223 .flex-item-70-percent {
218 flex-grow: 0; 224 flex-grow: 0;
219 flex-shrink: 0; 225 flex-shrink: 0;
220 flex-basis: 70%; 226 flex-basis: 70%;
(...skipping 11 matching lines...) Expand all
232 margin-bottom: 20px; 238 margin-bottom: 20px;
233 background-color: #f5f5f5; 239 background-color: #f5f5f5;
234 border: 1px solid #e3e3e3; 240 border: 1px solid #e3e3e3;
235 border-radius: 4px; 241 border-radius: 4px;
236 box-shadow: inset 0 1px 1px rgba(0,0,0,0.05); 242 box-shadow: inset 0 1px 1px rgba(0,0,0,0.05);
237 } 243 }
238 244
239 .break-wrap { 245 .break-wrap {
240 word-wrap: break-word; 246 word-wrap: break-word;
241 } 247 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698