summaryrefslogtreecommitdiff
path: root/chromium/chrome/browser/resources/chromeos/login/notification_card.css
blob: 7a728f3b0be9b34e4b2cb849df57c6b0ce7c29c3 (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
/* 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.
 */

#container {
  padding: 40px;
}

#icon-container {
  margin-bottom: 14px;
}

/* ':host' and '[icon]' are needed to increase selector's specificity. */
:host core-icon[icon] {
  height: 28px;
  width: 28px;
}

core-icon[icon=warning] {
  color: rgb(251, 192, 45);
}

core-icon[icon=done] {
  color: rgb(15, 157, 88);
}

#heading {
  font-size: 20px;
  margin-bottom: 14px;
}

#text-container {
  color: grey;
  line-height: 130%;
  max-width: 240px;
  text-align: center;
}

paper-button {
  background-color: rgb(66, 133, 244);
  color: rgb(255, 255, 255);
  min-width: 126px;
}

a {
  color: rgb(66, 133, 244);
  text-decoration: none;
}