-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnotification.css
More file actions
56 lines (53 loc) · 828 Bytes
/
notification.css
File metadata and controls
56 lines (53 loc) · 828 Bytes
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
.show{
visibility: visible !important;
transition: 0.5s;
}
.notification{
min-width: 250px;
color: black;
text-align: center;
border-radius: 2px;
padding: 16px;
position: fixed;
z-index: 1;
}
.alert{
background-color: #f1aaaa;
}
.info{
background-color: #a9e0fc;
}
.warning{
background-color:#ffefa1;
}
.topright{
right:100px;
top: 100px
}
.topleft{
left: 100px;
top: 100px
}
.bottomright{
right: 100px;
bottom: 100px
}
.bottomleft{
left: 100px;
bottom: 100px;
}
.center{
position: fixed;
right: 0;
left: 0;
top: 0;
bottom: 0;
margin: 100px auto 100px auto;
min-height: 10em;
width: 90%;
}
.xbutton{
cursor:pointer;
font-size:30px;
float:right;
}