-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome_styles.css
134 lines (108 loc) · 2.72 KB
/
home_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
127
128
129
130
131
132
133
134
/* POPPINS FONT */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
body{
background: url("img.jpg");
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
overflow: hidden;
}
.nav{
position: fixed;
top: 0;
display: flex;
justify-content: space-around;
width: 100%;
height: 100px;
line-height: 100px;
background: linear-gradient(rgba(39,39,39, 0.6), transparent);
z-index: 1000;
}
.nav-logo {
font-size: 24px; /* Adjust the font size as needed */
margin-right: auto; /* Pushes the logo to the left */
margin-left: 20px; /* Adjust the margin to move it a little towards the right */
}
.nav-menu ul{
display: flex;
}
.nav-menu ul li{
list-style-type: none;
}
.nav-menu ul li .link{
text-decoration: none;
font-weight: 500;
color: #fff;
padding-bottom: 15px;
margin: 0 25px;
}
.wrapper {
margin-top: 100px; /* Adjust as needed to ensure content starts below the navigation bar */
}
.link:hover, .active{
border-bottom: 2px solid #fff;
}
/* Picture Row */
.picture-row {
overflow-x: auto;
overflow-y: hidden;
white-space: nowrap;
margin-top: 100px; /* Adjust as needed */
}
.picture-row::-webkit-scrollbar {
display: none; /* Hide scrollbar for Chrome, Safari, and Opera */
}
.picture-row img {
width: 200px; /* Adjust image width */
height: auto; /* Maintain aspect ratio */
margin-right: 10px; /* Adjust spacing */
}
/* Video Row */
.video-row {
overflow-x: auto;
overflow-y: hidden;
white-space: nowrap;
margin-top: 50px; /* Adjust as needed */
}
.video-row::-webkit-scrollbar {
display: none; /* Hide scrollbar for Chrome, Safari, and Opera */
}
.video-row iframe {
width: 420px; /* Adjust video width */
height: 315px; /* Adjust video height */
margin-right: 10px; /* Adjust spacing */
}
/* Add this style to your existing CSS file (home.css) */
.button-container {
text-align: center;
margin-top: 20px; /* Adjust as needed */
}
.button {
display: inline-block;
padding: 10px 20px;
background-color: #007bff;
color: #fff;
text-decoration: none;
border-radius: 5px;
margin: 0 10px;
}
.button:hover {
background-color: #0056b3;
}
/* Your existing CSS */
.marquee-container {
overflow: hidden;
margin: 0;
padding: 0;
}
.marquee-image {
width: auto; /* Adjust as needed */
height: 350px;
margin-bottom: 50px;
}