OLD | NEW |
---|---|
1 /* Copyright 2014 The Chromium Authors. All rights reserved. | 1 /* Copyright 2014 The Chromium Authors. All rights reserved. |
2 * Use of this source code is governed by a BSD-style license that can be | 2 * Use of this source code is governed by a BSD-style license that can be |
3 * found in the LICENSE file. */ | 3 * found in the LICENSE file. */ |
4 body { | 4 body { |
5 background-color: rgb(247, 247, 247); | 5 background-color: rgb(247, 247, 247); |
6 font-size: 10pt; | 6 font-size: 10pt; |
7 margin: 150px 60px 0 30px; | 7 margin: 150px 60px 0 30px; |
8 } | 8 } |
9 | 9 |
10 #main-frame-blocked { | 10 #main-frame-blocked { |
11 margin: auto; | 11 margin: auto; |
12 max-width: 600px; | 12 max-width: 600px; |
13 min-width: 200px; | 13 min-width: 200px; |
14 } | 14 } |
15 | 15 |
16 h1 { | 16 h1 { |
17 font-size: 1.8em; | 17 font-size: 1.8em; |
18 font-weight: normal; | 18 font-weight: normal; |
19 margin: 5px 0 25px 0; | 19 margin: 5px 0 25px 0; |
20 } | 20 } |
21 | 21 |
22 #block-page-header { | |
23 font-weight: bold; | |
24 margin-bottom: 20px; | |
Marc Treib
2016/11/08 16:33:44
This is totally made up :) Probably Rachel should
| |
25 } | |
26 | |
22 .avatar-img { | 27 .avatar-img { |
23 -webkit-user-select: none; | 28 -webkit-user-select: none; |
24 border: 3px solid rgb(251, 251, 251); | 29 border: 3px solid rgb(251, 251, 251); |
25 border-radius: 50%; | 30 border-radius: 50%; |
26 content: -webkit-image-set( | 31 content: -webkit-image-set( |
27 url(default_100_percent/logo_avatar_circle_blue_color.png) 1x, | 32 url(default_100_percent/logo_avatar_circle_blue_color.png) 1x, |
28 url(default_200_percent/logo_avatar_circle_blue_color.png) 2x); | 33 url(default_200_percent/logo_avatar_circle_blue_color.png) 2x); |
29 margin-bottom: 5px; | 34 margin-bottom: 5px; |
30 margin-right: 15px; | 35 margin-right: 15px; |
31 margin-top: 5px; | 36 margin-top: 5px; |
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
139 | 144 |
140 #main-frame-blocked { | 145 #main-frame-blocked { |
141 display: flex; | 146 display: flex; |
142 flex-flow: column; | 147 flex-flow: column; |
143 } | 148 } |
144 | 149 |
145 #feedback { | 150 #feedback { |
146 margin-top: 35px; | 151 margin-top: 35px; |
147 } | 152 } |
148 } | 153 } |
OLD | NEW |