-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
133 lines (117 loc) · 2.47 KB
/
style.css
File metadata and controls
133 lines (117 loc) · 2.47 KB
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
html {
/* for smooth scrolling */
scroll-behavior: smooth !important;
}
body {
background-color: rgba(255, 248, 220, 0.8);
min-height: 100vh;
}
#add {
/* main form can't be wider than 800px */
max-width: 800px;
}
.meme {
/* centered meme holder can't be wider than 400px */
max-width: 400px !important;
margin: 0 auto;
}
#myBtn {
display: none;
position: fixed;
z-index: 98;
border: none;
bottom: 4vh;
right: 4vw;
outline: none;
background-color: rgb(209, 119, 89);
color: white;
cursor: pointer;
padding: 15px;
border-radius: 8px;
font-size: 18px;
}
#myBtn:hover {
background-color: rgb(241, 203, 198);
color: black;
}
button {
/* remove border from all buttons */
border: none !important;
}
/* The snackbar - position it at the bottom and in the middle of the screen */
#snackbar {
visibility: hidden;
/* Hidden by default. Visible on click */
min-width: 250px;
/* Set a default minimum width */
margin-left: -125px;
/* Divide value of min-width by 2 */
background-color: #333;
/* Black background color */
color: #fff;
/* White text color */
text-align: center;
/* Centered text */
border-radius: 2px;
/* Rounded borders */
padding: 16px;
/* Padding */
position: fixed;
/* Sit on top of the screen */
z-index: 99;
/* Add a z-index if needed */
left: 50%;
/* Center the snackbar */
bottom: 5vh;
/* 30px from the bottom */
}
/* Show the snackbar when clicking on a button (class added with JavaScript) */
#snackbar.show {
visibility: visible;
/* 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: 5vh;
opacity: 1;
}
}
@keyframes fadein {
from {
bottom: 0;
opacity: 0;
}
to {
bottom: 5vh;
opacity: 1;
}
}
@-webkit-keyframes fadeout {
from {
bottom: 5vh;
opacity: 1;
}
to {
bottom: 0;
opacity: 0;
}
}
@keyframes fadeout {
from {
bottom: 5vh;
opacity: 1;
}
to {
bottom: 0;
opacity: 0;
}
}