-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathalerts.5a16890a.css
149 lines (132 loc) · 2.72 KB
/
alerts.5a16890a.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
.msgbox-area {
max-height: 100%;
max-width: 30%;
min-width: 300px;
position: fixed;
bottom: 15px;
right: 20px;
z-index: 100;
}
.msgbox-box {
font-size: inherit;
background-color: rgba(0, 0, 0, 0.8);
padding: 18px 20px;
margin: 0 0 15px;
display: flex;
align-items: center;
position: relative;
border-radius: 12px;
box-shadow: 0 10px 15px rgba(0, 0, 0, 0.65);
transition: opacity 300ms ease-in;
transition: background-color 0.3s;
}
.msgbox-box::before {
content: '';
position: absolute;
width: 0;
height: 50%;
border-left: 1px solid;
border-right: 2px solid;
border-bottom-right-radius: 3px;
border-top-right-radius: 3px;
left: 0;
top: 50%;
transform: translate(0,-50%);
}
.msgbox-content::before {
margin: auto .7em auto 0;
font-family: 'Font Awesome 5 Free';
font-size: 1em;
font-weight: bold;
}
.msgbox-box.msgbox-box-hide {
opacity: 0;
display: none;
}
.msgbox-box:last-child {
margin: 0;
}
.msgbox-content {
display: flex;
flex-shrink: 1;
}
.msgbox-text {
display: inline-block;
}
.msgbox-text a {
color: #fff;
}
.msgbox-close {
color: #ffffff;
font-weight: bold;
text-decoration: none;
margin: 0 0 0 20px;
flex-grow: 0;
flex-shrink: 0;
position: relative;
transition: text-shadow 225ms ease-out;
}
.msgbox-close:hover {
text-shadow: 0 0 3px #efefef;
}
.msgbox-box.info {
border: 1px solid rgba(6, 45, 241, 0.842);
background-color: rgba(6, 57, 114, 0.438);
box-shadow: 0px 0px 2px #0396ff;
}
.msgbox-box.info:hover {
background-color: rgba(10, 67, 128, 0.9);
}
.msgbox-box.info .msgbox-content::before {
content: "\f05a";
color: #0396ff;
}
.msgbox-box.info::before {
color: #0396ff;
}
.msgbox-box.success {
border: 1px solid rgba(12, 221, 12, 0.822);
background-color: rgba(13, 85, 19, 0.479);
box-shadow: 0px 0px 2px #0396ff;
}
.msgbox-box.success:hover {
background-color: rgba(43, 104, 47, 0.9);
}
.msgbox-box.success .msgbox-content::before {
content: "\f058";
color: #25eb0b;
}
.msgbox-box.success::before {
color: #25eb0b;
}
.msgbox-box.warning {
border: 1px solid rgba(241, 167, 6, 0.918);
background-color: rgba(112, 68, 7, 0.452);
box-shadow: 0px 0px 2px #ffb103;
}
.msgbox-box.warning:hover {
background-color: rgba(148, 88, 4, 0.9);
}
.msgbox-box.warning .msgbox-content::before {
content: "\f071";
color: #ffb40b;
}
.msgbox-box.warning::before {
color: #ffb40b;
}
.msgbox-box.error {
border: 1px solid rgba(241, 6, 6, 0.884);
background-color: rgba(105, 12, 5, 0.486);
box-shadow: 0px 0px 2px #ff0303;
}
.msgbox-box.error:hover {
background-color: rgba(117, 15, 7, 0.9);
}
.msgbox-box.error .msgbox-content::before {
content: "\f057";
color: #ff0303;
}
.msgbox-box.error::before {
color: #ff0303;
}
/*# sourceMappingURL=/alerts.5a16890a.css.map */