OLD | NEW |
| (Empty) |
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 | |
3 * found in the LICENSE file. */ | |
4 body { | |
5 background-color: rgb(247, 247, 247); | |
6 font-size: 10pt; | |
7 margin: 150px 60px 0 30px; | |
8 } | |
9 | |
10 #main-frame-blocked { | |
11 margin: auto; | |
12 max-width: 600px; | |
13 min-width: 200px; | |
14 } | |
15 | |
16 h1 { | |
17 font-size: 1.8em; | |
18 font-weight: normal; | |
19 margin: 5px 0 25px 0; | |
20 } | |
21 | |
22 .avatar-img { | |
23 -webkit-user-select: none; | |
24 border: 3px solid rgb(251, 251, 251); | |
25 border-radius: 50%; | |
26 content: -webkit-image-set( | |
27 url(../../app/theme/default_100_percent/cros/logo_avatar_circle_blue_color
.png) 1x, | |
28 url(../../app/theme/default_200_percent/cros/logo_avatar_circle_blue_color
.png) 2x); | |
29 margin-bottom: 5px; | |
30 margin-right: 15px; | |
31 margin-top: 5px; | |
32 max-width: 45px; | |
33 position: relative; | |
34 } | |
35 | |
36 #feedback { | |
37 margin-top: 50px; | |
38 } | |
39 | |
40 #feedback-link { | |
41 color: rgb(66, 133, 244); | |
42 } | |
43 | |
44 #request-access-button { | |
45 background-color: rgb(66, 133, 244); | |
46 color: rgb(255, 255, 255); | |
47 cursor: pointer; | |
48 font-size: 12px; | |
49 font-weight: bold; | |
50 min-width: 88px; | |
51 padding: 10px 15px; | |
52 transition: box-shadow 200ms cubic-bezier(0.4, 0, 0.2, 1); | |
53 transition-delay: 200ms; | |
54 } | |
55 | |
56 #request-access-button:hover { | |
57 background-color: rgb(30, 136, 229); | |
58 } | |
59 | |
60 #request-access-button:active { | |
61 background-color: rgb(25,118,210); | |
62 box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2); | |
63 transition-delay: 0s; | |
64 } | |
65 | |
66 #details-button-container { | |
67 color: rgb(97,97,97); | |
68 cursor: pointer; | |
69 display: inline; | |
70 font-size: 12px; | |
71 text-decoration: underline; | |
72 } | |
73 | |
74 #button-container { | |
75 align-items: baseline; | |
76 display: flex; | |
77 justify-content: space-between; | |
78 margin-top: 60px; | |
79 } | |
80 | |
81 #details { | |
82 color: rgb(97,97,97); | |
83 font-size: 14px; | |
84 } | |
85 | |
86 #details-header { | |
87 font-weight: bold; | |
88 } | |
89 | |
90 .custodian-information { | |
91 align-items: center; | |
92 display: flex; | |
93 font-size: 12px; | |
94 } | |
95 | |
96 .custodian-name { | |
97 color: rgb(97,97,97); | |
98 padding: 1px 0; | |
99 } | |
100 | |
101 .custodian-email { | |
102 color: rgb(183, 183, 183); | |
103 padding: 1px 0; | |
104 } | |
105 | |
106 @media (max-width: 600px) { | |
107 #button-container { | |
108 display: flex; | |
109 flex-flow: column; | |
110 justify-content: flex-start; | |
111 order: 2; | |
112 text-transform: uppercase; | |
113 } | |
114 | |
115 #details-button-container { | |
116 font-weight: bold; | |
117 margin: auto; | |
118 order: 2; | |
119 } | |
120 | |
121 #request-access-button { | |
122 margin-bottom: 30px; | |
123 order: 1; | |
124 text-align: center | |
125 } | |
126 | |
127 .button { | |
128 width: 100%; | |
129 } | |
130 | |
131 #details { | |
132 margin: auto; | |
133 order: 1; | |
134 } | |
135 | |
136 .hidden-on-mobile { | |
137 display: none; | |
138 } | |
139 | |
140 #main-frame-blocked { | |
141 display: flex; | |
142 flex-flow: column; | |
143 } | |
144 | |
145 #feedback { | |
146 margin-top: 35px; | |
147 } | |
148 } | |
OLD | NEW |