-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
126 lines (110 loc) · 2.14 KB
/
styles.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
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
body, html {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
font-family: Arial, sans-serif;
color: white;
background-color: #000;
overflow-x: hidden;
}
.scroll-container {
height: 1000vh; /* Adjust this value to control scroll length */
position: relative;
width: 100vw;
}
.sequence-wrapper {
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
overflow: hidden;
}
#sequence {
width: 100vw;
height: 100vh;
object-fit: cover;
object-position: center;
}
header {
position: fixed;
top: 0;
left: 0;
width: 100%;
padding: 20px;
box-sizing: border-box;
z-index: 1000;
}
.header-content {
display: flex;
flex-direction: column;
align-items: flex-start;
}
.header-top {
display: flex;
justify-content: space-between;
align-items: center;
width: 100%;
margin-bottom: 20px;
}
.logo img {
max-height: 40px; /* Adjust as needed */
}
.page-title {
font-size: 42px;
margin: 0;
}
.hire-button {
background-color: #ff00ff; /* Adjust color as needed */
color: white;
border: none;
padding: 10px 20px;
border-radius: 5px;
cursor: pointer;
}
nav {
margin-top: 20px; /* Add space between header-top and nav */
}
nav ul {
list-style-type: none;
padding: 0;
margin: 0;
display: flex;
flex-direction: column;
}
nav ul li {
font-size: 14px;
margin-bottom: 10px; /* Add space between nav items */
}
nav ul li:last-child {
margin-bottom: 0; /* Remove margin from the last item */
}
#format-selector {
position: fixed;
bottom: 10px;
right: 10px;
z-index: 2000;
background-color: rgba(0, 0, 0, 0.7);
padding: 10px;
border-radius: 5px;
color: white;
}
#image-format {
background-color: #333;
color: white;
border: 1px solid #555;
padding: 5px;
border-radius: 3px;
}
/* Adjust the frame counter position to avoid overlap */
#frame-counter {
position: fixed;
bottom: 10px;
left: 10px;
background: rgba(0,0,0,0.5);
color: white;
padding: 5px;
font-family: Arial, sans-serif;
z-index: 1000;
}