summaryrefslogtreecommitdiff
path: root/chromium/chrome/browser/resources/chromeos/login/enterprise_info.css
blob: 2b84175e10657a4fe51efbb5420f16a3b29a49d4 (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
/* Copyright (c) 2012 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.
 *
 * This is the stylesheet used for notifications in enterprise-enrolled devices.
 */

#enterprise-info {
  background-color: rgb(250, 245, 202);
  border: 2px solid rgb(250, 245, 202);
  border-radius: 2px;
  margin-left: auto;
  margin-right: auto;
  padding: 3px 8px 7px;
}

#enterprise-info[location='guest-tab'] {
  box-sizing: border-box;
  margin-bottom: -43px;
  max-width: 640px;
}

#enterprise-info[visible='false'] {
  display: none;
}

#enterprise-info img {
  -webkit-margin-end: 4px;
  height: 18px;
  position: relative;
  top: 4px;
  width: 18px;
}

@media (max-height:480px) and (max-width:400px) {
  #enterprise-info[location='guest-tab'] {
    margin-bottom: 1em;
  }
}

@media (max-width:400px) {
  #enterprise-info[location='guest-tab'] {
    margin-top: -2em;
  }
}