-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
129 lines (101 loc) · 2.18 KB
/
style.css
File metadata and controls
129 lines (101 loc) · 2.18 KB
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
body {
font-family: 'Inter', sans-serif;
margin: 0;
padding: 0;
background-color: #f9f9f9;
color: #333;
}
header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px;
}
.logo {
display: flex;
flex-direction: column;
align-items: flex-start;
}
.HZB-logo {
height: 100px; /* or any size you want */
width: auto; /* keeps aspect ratio */
}
.HZB-bar {
width: 150px; /* Adjust to the size of your bar image */
}
.oasis-logo{
width: 300px; /* Adjust to the size of your third image */
margin-left: auto;
margin-right: 0;
align-self: center;
}
/* Styling the navigation menu */
nav ul {
list-style-type: none; /* Remove default bullet points */
display: flex; /* Make the list items appear in a horizontal row */
justify-content: center; /* Center the items horizontally */
padding: 0;
}
nav ul li {
margin: 0 20px; /* Add space between each menu item */
}
nav ul li a {
text-decoration: none; /* Remove the underline from links */
color: #333; /* Set text color */
font-size: 18px; /* Set the font size */
transition: color 0.3s ease; /* Smooth color transition on hover */
}
nav ul li a:hover {
color: #007bff; /* Change text color when hovering */
}
.hero {
padding: 3rem 2rem;
background: linear-gradient(to right, #184e8b, #6cabe9);
color: white;
text-align: center;
}
.hero h1 {
font-size: 2.5rem;
margin-bottom: 0.5rem;
}
.hero p {
font-size: 1.2rem;
}
.container {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
gap: 1.5rem;
padding: 2rem;
}
.video-card {
background-color: white;
border-radius: 10px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
overflow: hidden;
transition: transform 0.2s ease;
}
.video-card:hover {
transform: scale(1.02);
}
.video-card iframe {
width: 100%;
height: 180px;
}
.video-card .info {
padding: 1rem;
}
.video-card .info h3 {
margin: 0 0 0.5rem;
font-size: 1.1rem;
}
.video-card .info p {
margin: 0;
font-size: 0.9rem;
color: #666;
}
footer {
text-align: center;
padding: 2rem;
background-color: #184e8b;
color: white;
}