-
Notifications
You must be signed in to change notification settings - Fork 1
/
alert.css
165 lines (124 loc) · 3.02 KB
/
alert.css
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
body.wp-admin #bu-alert-wrapper {
display: none;
}
/** ** ** ** ** ** ** ** ** ** ** **/
/** NON-EMERGENCY **/
/** ** ** ** ** ** ** ** ** ** ** **/
#bu-alert-non-emergency {
font-family: Arial, Helvetica, Verdana, sans-serif;
background: #fffbcc url(https://www.bu.edu/common/bueas/graphics/icon-standard.gif) no-repeat 12px 14px;
border: 1px solid #e6db55;
text-align: left;
padding: 12px 12px 12px 80px;
margin: 1em 0 18px 0;
}
#bu-alert-non-emergency h1 {
padding: 0;
margin: 0;
font-size: 16px;
line-height: 18px;
color: #cc0000;
background: transparent;
}
#bu-alert-non-emergency p {
padding: 0;
margin: 0;
font-size: 13px;
line-height: 16px;
color: #404448;
}
#bu-alert-non-emergency p.bu-alert-non-emergency-date {
font-size: 11px;
line-height: 12px;
color: #404448;
font-weight: normal;
margin: 5px 0 8px;
}
#bu-alert-non-emergency p.bu-alert-non-emergency-signature {
margin-top: 1em;
}
#bu-alert-non-emergency a {
color: #cc0000 !important;
text-decoration: underline !important;
}
/** ** ** ** ** ** ** ** ** ** ** **/
/** EMERGENCY **/
/** ** ** ** ** ** ** ** ** ** ** **/
#bu-alert-emergency {
width: 100%;
margin: 0 !important;
padding-top: 12pt;
padding-bottom: 12pt;
font-family: arial,helvetica,verdana,sans-serif !important;
font-style: normal;
font-variant: normal;
font-weight: bold;
font-size: 12px !important;
font-size-adjust: none;
font-stretch: normal;
-x-system-font: none;
text-align: left;
background: white;
}
#bu-alert-emergency-inner {
border-style: solid none;
border-color: #ECD127; /* Keep this in addition to below, for Safari compatibility */
border-color: #ECD127 -moz-use-text-color;
border-width: 3px medium;
padding: 15px 20px 15px 50px;
background: #1e1e1f url(https://www.bu.edu/common/bueas/graphics/icon-severe-small.gif) no-repeat scroll 3px 1px;
-moz-background-clip: -moz-initial;
-moz-background-origin: -moz-initial;
-moz-background-inline-policy: -moz-initial;
min-height: 40px;
_height: 55px;
}
#bu-alert-emergency-header {
margin: 0;
padding: 0 10px 0 0;
padding-top: 5px;
padding-right: 20px;
font-size: 16px;
color: #ECD127;
float: left;
display: block;
}
#bu-alert-emergency-message {
display: block;
padding-left: 180px;
padding-bottom: 0.5em;
}
#bu-alert-emergency p {
font-family: arial,helvetica,verdana,sans-serif !important;
font-variant: normal;
font-weight: bold;
font-size: 12px !important;
font-size-adjust: none;
font-stretch: normal;
-x-system-font: none;
text-align: left;
color: #cccccc;
display: inline;
}
#bu-alert-emergency a,
#bu-alert-emergency a:link,
#bu-alert-emergency a:visited,
#bu-alert-emergency a:active,
#bu-alert-emergency a:hover {
color: #cc0000;
text-decoration: underline;
}
#emergency p {
font-weight: bold;
}
@media only screen and (max-width : 640px) {
#bu-alert-emergency-message {
clear: left;
padding-left: 0;
padding-top: 10px
}
}
.wp-admin #bu-alert-emergency, .wp-admin #bu-alert-non-emergency {
position: relative;
z-index: 90000;
}