-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
53 lines (48 loc) · 911 Bytes
/
style.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
* {
margin: 0;
padding: 0;
border: 0;
box-sizing: border-box;
}
body {
background-color: #f7a569;
}
.button-container {
position: absolute;
top: 57.7%;
left: 37%;
transform: translate(-50%, -50%);
text-align: center;
}
.btn {
background-color: #ffffff00;
color: #ffffff00;
width: 300px;
max-width: 90%;
aspect-ratio: 423 / 17;
padding: 10px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
font-family: 'Nunito', sans-serif;
font-size: 16px;
text-align: center;
}
section.vid {
position: sticky;
top: 0;
height: 100%; /* Make sure video fills the viewport */
overflow: hidden;
}
section.vid video {
width: 100%;
height: auto;
object-fit: fill;
}
section.vid div.holder {
position: sticky;
top: 0;
}
body {
padding-bottom: 0vh; /* Adds vertical space at the bottom */
}