-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathalert.css
More file actions
65 lines (57 loc) · 1.23 KB
/
alert.css
File metadata and controls
65 lines (57 loc) · 1.23 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
55
56
57
58
59
60
61
62
63
64
65
/*Alert Box Main Style*/
.alert {
padding: 20px;
color: white;
margin-bottom: 15px;
opacity: 1;
transition: opacity 0.4s;
position: absolute;
z-index: 100000;
right: 0px;
top: 0px;
margin-left: auto;
width: 300px;
}
/*Alert window text style*/
.alert-text {
font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
margin-top: 2px;
margin-bottom: 6px;
color: #ECF0F1; /*(Light Gray color)*/
}
/*Error alert box sub-style*/
.alert.error {
background-color: #E74C3C; /*(Red color)*/
}
/*Success alert box sub-style*/
.alert.success {
background-color: #2ECC71; /*(Green color)*/
}
/*Info alert box sub-style*/
.alert.info {
background-color: #3498DB; /*(Blue Color)*/
}
/*Warning alert box sub-style*/
.alert.warning {
background-color: #F39C12; /*(Yellow Color)*/
}
/*Alert box close button main style*/
.closebtn {
margin-left: 15px;
color: white;
font-weight: bold;
float: right;
font-size: 22px;
line-height: 20px;
cursor: pointer;
transition: 0.3s;
}
/*Alert box close button hover change color*/
.closebtn:hover {
color: black;
}
/*Password fill hyperlink main style*/
.fillText {
text-decoration: underline;
cursor: pointer;
}