-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsnackBar.css
83 lines (74 loc) · 1.57 KB
/
snackBar.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
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
81
82
83
#snackbar {
font-family: 'Montserrat', sans-serif;
font-weight: bolder;
color: rgb(117, 104, 124);
visibility: hidden;
/* Hidden by default. Visible on click */
width: 70%;
/* Divide value of min-width by 2 */
background-color: #333;
/* Black background color */
color: #fff;
/* White text color */
text-align: center;
margin-top: 5px;
/* Centered text */
border-radius: 2px;
/* Rounded borders */
padding: 16px;
/* Sit on top of the screen */
z-index: 1;
/* Center the snackbar */
bottom: 30px;
/* 30px from the bottom */
}
/* Show the snackbar when clicking on a button (class added with JavaScript) */
.show {
visibility: visible !important;
/* Show the snackbar */
/* Add animation: Take 0.5 seconds to fade in and out the snackbar.
However, delay the fade out process for 2.5 seconds */
-webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
animation: fadein 0.5s, fadeout 0.5s 2.5s;
}
/* Animations to fade the snackbar in and out */
@-webkit-keyframes fadein {
from {
bottom: 0;
opacity: 0;
}
to {
bottom: 30px;
opacity: 1;
}
}
@keyframes fadein {
from {
bottom: 0;
opacity: 0;
}
to {
bottom: 30px;
opacity: 1;
}
}
@-webkit-keyframes fadeout {
from {
bottom: 30px;
opacity: 1;
}
to {
bottom: 0;
opacity: 0;
}
}
@keyframes fadeout {
from {
bottom: 30px;
opacity: 1;
}
to {
bottom: 0;
opacity: 0;
}
}