blob: 324d0bbb6301b2bdadfcac875d8a971726925fdf (
plain) (
blame)
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
|
@import "../colors.scss";
.notifications {
position: absolute;
z-index: 50;
bottom: 50px;
left: 30px;
.notification {
overflow: hidden;
width: 250px;
margin: 10px 0;
padding: 10px;
transition: all 1s ease;
transform: translateX(-300px);
white-space: nowrap;
text-overflow: ellipsis;
color: $color-green-light;
border-left: 5px solid $color-green-dark;
background-color: $color-green;
cursor: pointer;
.notification-title {
font-size: 0.9em;
margin: 0;
}
.notification-description {
font-size: 0.8em;
}
&.notification-open {
transform: translateX(0px);
}
&.notification-closed {
transform: translateY(-50px);
opacity: 0;
}
}
}
|