summaryrefslogtreecommitdiff
path: root/chromium/chrome/browser/resources/chromeos/login/gaia_card.css
blob: dda92a8f969d0fb14f3257a7b75efd8c447f9121 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
/* Copyright 2015 The Chromium Authors. All rights reserved.
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

:host {
  display: flex;
  flex-direction: column;
  position: relative;
}

.gaia-header {
  background-color: var(--google-blue-500);
  color: white;
  height: 198px;
}

:host(:not(.disabled)) .gaia-header {
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.17);
  /* z-index is needed to make shadow visible. */
  z-index: 1;
}

.gaia-footer {
  background-color: rgb(238, 238, 238);
}

.gaia-footer {
  position: relative;
}

.header-container {
  padding: 50px 40px 18px;
}

.footer-container {
  padding: 24px 40px 34px;
}

::content div.gaia-body-text {
  margin-bottom: 24px;
}

::content div.gaia-body-text p {
  color: rgba(0, 0, 0, 0.87);
  font-size: 14px;
  line-height: 20px;
  margin: 0;
}

::content p.enterprise-info {
  color: white;
  font-size: 15px;
  margin: 8px 0 0 0;
}

::content h1.welcome-message {
  color: white;
  font-size: 20px;
  font-weight: normal;
  margin-bottom: 0;
}

.overlay {
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 11;
}

paper-progress#progress-bar {
  --paper-progress-active-color: var(--google-yellow-500);
  --paper-progress-container-color: var(--google-yellow-100);
  bottom: 0;
  display: none;
  height: 3px;
  position: absolute;
  width: 100%;
}

:host(.full-disabled) #full-overlay,
:host(.disabled) #bottom-overlay,
:host(.disabled) #progress-bar {
  display: block;
}