forked from Turwash/AsanaAi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
106 lines (89 loc) · 1.73 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
body, html {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
height: 100%;
background-color: #2228299d;
}
.container {
display: flex;
flex-direction: column;
min-height: 100vh;
}
header {
background-color: #2228299d;
color:rgb(30, 178, 178);
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: rgb(30, 178, 178);
}
main {
flex-grow: 1;
display: flex;
flex-direction: column;
}
.video-container {
height: 75vh; /* Adjusted height */
overflow: hidden;
}
.video-container video {
width: 100%;
height: 100%;
object-fit: cover;
}
.image-section {
display: flex;
justify-content: space-around;
align-items: center;
height: 40vh; /* Adjusted height */
}
.image-tab {
width: 100%;
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 {
display: inline-block;
width: 200px; /* Fixed width */
padding: 10px 20px;
margin-bottom: 10px;
font-size: 16px;
cursor: pointer;
border: none;
border-radius: 5px;
background-color: #050e19;
color: #fff;
transition: box-shadow 0.3s ease;
}
button:hover {
background-color:rgb(30, 178, 178);
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.image-tab img {
width: 100%;
height: auto;
cursor: pointer; /* Set cursor to pointer on hover */
}