-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.css
More file actions
50 lines (42 loc) · 773 Bytes
/
popup.css
File metadata and controls
50 lines (42 loc) · 773 Bytes
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
@font-face {
font-family: Manrope;
src: url(./assets/fonts/Manrope-VariableFont_wght.ttf);
}
body {
font-family: 'Manrope', sans-serif;
min-width: 23rem;
min-height: 18rem;
}
a {
text-decoration: none;
}
.footer {
position: fixed;
bottom: 0;
left: 0;
width: 100%;
height: 17vh;
overflow: hidden;
z-index: 999;
}
.footer-inner {
position: relative;
width: 100%;
height: 100%;
background-color: black;
transform: skewY(3deg);
transform-origin: bottom left;
}
.footer-content {
position: absolute;
bottom: 0;
left: 0;
right: 0;
text-align: center;
color: white;
transform: skewY(-3deg);
transform-origin: bottom left;
}
.font-smaller {
font-size: small;
}