-
-
Notifications
You must be signed in to change notification settings - Fork 193
Expand file tree
/
Copy pathstyles.css
More file actions
55 lines (49 loc) · 1.06 KB
/
styles.css
File metadata and controls
55 lines (49 loc) · 1.06 KB
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
#notification-bar {
display: block;
box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.53);
padding: 5px 0px;
width: 100%;
min-height: 39px;
position: absolute;
z-index: 16;
left: 0px;
bottom: 25px;
outline: none;
overflow: hidden;
color: rgb(51, 51, 51);
background-color: rgb(223, 226, 226);
}
.dark #notification-bar {
color: #ccc;
background: #2c2c2c;
}
#notification-bar .content-container {
padding: 5px 10px;
float: left;
width: 100%;
}
#notification-bar .close-icon-container {
height: auto;
position: absolute;
float: right;
text-align: center;
width: auto;
min-width: 66px;
right: 20px;
top: 10px;
}
#notification-bar .close-icon-container .close-icon {
display: block;
font-size: 18px;
line-height: 18px;
text-decoration: none;
width: 18px;
height: 18px;
background-color: transparent;
border: none;
padding: 0px; /*This is needed to center the icon*/
float: right;
}
.dark #notification-bar .close-icon-container .close-icon {
color: #ccc;
}