-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy path_notification.scss
80 lines (64 loc) · 1.48 KB
/
_notification.scss
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
@keyframes aesthetic-notification {
0% {
opacity: 0;
pointer-events: none;
}
75% {
opacity: 0.75;
pointer-events: all;
}
100% {
opacity: 1;
pointer-events: all;
}
}
.aesthetic-notification {
display: none;
opacity: 0;
position: relative;
min-width: 200px;
min-height: 50px;
max-width: 100%;
z-index: 1000;
color: $aesthetic-white;
background-color: $aesthetic-notification-transparent;
border-radius: 5px;
padding: 10px;
&.is-active {
display: block;
opacity: 1;
animation: aesthetic-notification 2s;
}
.dismiss {
@include no-button-styles;
position: absolute;
top: 5px;
right: 5px;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
width: 25px;
height: 25px;
border-radius: 25px;
background-color: $aesthetic-black;
}
.aesthetic-notification-content {
text-overflow: wrap;
}
}
.aesthetic-windows-xp-notification {
@extend .aesthetic-notification;
border: 2px solid $aesthetic-windows-xp-black;
box-shadow: 2px 2px 1px 0px $aesthetic-windows-xp-shadow-dark;
color: $aesthetic-windows-xp-black;
background-color: $aesthetic-windows-xp-notification-background;
.dismiss {
background-color: $aesthetic-windows-xp-white;
border-radius: 3px;
border: 2px solid $aesthetic-windows-xp-notification-dismiss;
font-family: sans-serif;
font-weight: bold;
color: $aesthetic-windows-xp-notification-dismiss;
}
}