forked from Turwash/AsanaAi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ii
110 lines (93 loc) · 1.86 KB
/
ii
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
.video-container {
height: 40vh; /* Adjusted height */
overflow: hidden;
}
.video-container video {
width: 100%;
height: 100%;
object-fit: cover;
}
body, html {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
height: 100%;
}
.container {
display: flex;
flex-direction: column;
min-height: 100vh;
}
header {
background-color: #333;
color: #fff;
padding: 10px 20px;
}
.navbar {
display: flex;
justify-content: space-between;
align-items: center;
}
.brand {
font-size: 1.5rem;
}
.nav-links a {
color: #fff;
text-decoration: none;
margin-right: 20px;
transition: color 0.3s ease;
}
.nav-links a:hover {
color: #ddd;
}
main {
flex-grow: 1;
display: flex;
flex-direction: column;
}
.video-container {
position: relative;
width: 100%;
height: 100vh; /* Set the height of the video container to the full height of the viewport */
overflow: hidden;
}
.video-container video {
position: absolute;
width: 100%;
height: auto;
top: 50%; /* Position the video vertically centered */
left: 50%; /* Position the video horizontally centered */
transform: translate(-50%, -50%); /* Adjust the position to center the video */
}
.image-section {
display: flex;
justify-content: space-around;
align-items: center;
height: 40vh; /* Adjusted height */
}
.image-tab {
display: flex;
flex-direction: column;
align-items: center;
margin: 0 10px; /* Add spacing between images */
}
img {
width: 100%;
height: auto;
border-radius: 5px;
margin-bottom: 10px;
}
button {
padding: 10px 20px;
margin-bottom: 10px;
font-size: 16px;
cursor: pointer;
border: none;
border-radius: 5px;
background-color: #007bff;
color: #fff;
width: 100%;
}
button:hover {
background-color: #0056b3;
}