forked from Jacorb90/Prestige-Tree
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnotification.css
50 lines (41 loc) · 806 Bytes
/
notification.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
.notification {
border: 4px solid;
border-radius: 5px;
width: 300px;
min-height: 60px;
color: #000000;
display: block;
margin-top: 30px;
padding-top: 15px;
padding-bottom: 15px;
}
.notification-container {
position: absolute;
z-index: 999999999999999999999999999999999999999999999999999999999999999999;
right: 30px;
width: 300px;
}
.achievement-notification {
border-color: #51629C;
background: #7182BC;
}
.milestone-notification {
border-color: #52a195;
background: #73bfb5;
}
.challenge-notification {
border-color: #B1A21C;
background: #D1C23C;
}
.fade-enter-active, .fade-leave-active {
transition: opacity .3s
}
.fade-transition {
transition: opacity .3s
}
.fade-enter, .fade-leave-to /* .fade-leave-active below version 2.1.8 */ {
opacity: 0
}
.redtext {
color: red;
}