summaryrefslogtreecommitdiffstats
path: root/chrome/browser/resources/supervised_user_block_interstitial.css
blob: 73371284a6cf82982089c812567047ce6e308948 (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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
/* Copyright 2014 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. */
body {
  background-color: rgb(230, 230, 230);
  font-family: Helvetica, Arial, sans-serif;
  font-size: 10pt;
  margin: 50px 40px 20px 40px;
  text-align: center;
}

#main-frame-blocked {
  margin: auto;
  max-width: 540px;
  min-width: 200px;
}

#box {
  background-color: rgb(251, 251, 251);
  border: 1px solid rgb(170, 170, 170);
  border-bottom: 1px solid rgb(136, 136, 136);
  border-radius: 3px;
  box-shadow: 0 2px 2px rgb(170, 170, 170);
  color: black;
}

h1 {
  color: rgb(102, 102, 102);
  font-size: 1.3em;
  font-weight: normal;
  margin: 5px 0 30px 0;
}

a {
  color: rgb(17, 85, 204);
  text-decoration: none;
}

.error-img {
  /* Can't access chrome:// urls from an untrusted renderer process, so embed
   * the resource manually. */
  -webkit-user-select: none;
  content: -webkit-image-set(
      url('../../app/theme/default_100_percent/common/error_managed_mode_blocked_page.png') 1x,
      url('../../app/theme/default_200_percent/common/error_managed_mode_blocked_page.png') 2x);
  margin-bottom: 15px;
  margin-top: 10px;
}

.avatar-container {
  position: relative;
}

.avatar-img {
  -webkit-user-select: none;
  border: 3px solid rgb(251, 251, 251);
  border-radius: 50%;
  margin-bottom: 5px;
  margin-top: 10px;
  position: relative;
}

#content-top {
  margin: 20px 25px;
}

button {
  -webkit-user-select: none;
  background-image: linear-gradient(rgb(246, 246, 246) 5%,
                                    rgb(239, 239, 239) 50%,
                                    rgb(221, 221, 221));
  border: 1px solid rgb(209, 209, 211);
  border-bottom: 1px solid rgb(193, 193, 195);
  border-radius: 2px;
  box-shadow: inset 0 1px 0 rgb(255, 255, 255);
  color: rgb(102, 102, 102);
  font-weight: bold;
  margin: 5px 0;
  padding: 8px 13px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

#back-button {
  background-image: linear-gradient(rgb(84, 153, 244) 5%,
                                    rgb(82, 148, 242) 50%,
                                    rgb(75, 133, 241));
  border: 1px solid rgb(81, 135, 223);
  border-bottom: 1px solid rgb(56, 112, 207);
  box-shadow: inset 0 1px 0 rgb(95, 168, 247);
  color: rgb(255, 255, 255);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
}

@media (min-width: 376px) {
  #back-button {
    width: 100px;
  }
}

@media (max-width: 375px) {
  button {
    width: 100%;
  }
}