-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
110 lines (94 loc) · 1.76 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
body {
font-family: 'Roboto', sans-serif;
margin: 0;
padding: 0;
color: rgb(51, 51, 51);
background-color: #f9f9f9;
line-height: 1.6;
}
header {
background-color: #222;
color: #fff;
padding: 1.5rem;
text-align: center;
border-bottom: 3px solid #ff6600;
}
header h1 {
margin: 0;
font-size: 2.5rem;
font-weight: 300;
}
nav ul {
list-style: none;
padding: 0;
margin: 1rem 0;
display: flex;
justify-content: center;
gap: 1.5rem;
}
nav ul li a {
color: #fff;
text-decoration: none;
font-size: 1rem;
transition: color 0.3s ease;
}
nav ul li a:hover {
color: #ff6600;
}
main {
padding: 3rem 2rem;
max-width: 1200px;
margin: 0 auto;
}
.highlight {
display: flex;
flex-direction: column-reverse;
gap: 2rem;
margin-bottom: 3rem;
}
.highlight-text h2 {
margin: 0;
font-size: 2rem;
font-weight: 400;
}
.highlight-video iframe {
width: 100%;
border: none;
border-radius: 8px;
}
.video-gallery {
margin: 3rem 0;
text-align: center;
}
.video-gallery h2 {
font-size: 2rem;
margin-bottom: 2rem;
font-weight: 400;
}
.video-thumbnails {
display: flex;
flex-wrap: wrap;
gap: 1rem;
justify-content: center;
}
.video-thumbnails a {
display: block;
width: 100%;
max-width: 250px;
}
.video-thumbnails img {
width: 100%;
border-radius: 8px;
transition: transform 0.3s ease;
}
.video-thumbnails img:hover {
transform: scale(1.05);
}
footer {
background-color: #222;
color: #fff;
text-align: center;
padding: 1rem;
position: relative;
border-top: 3px solid #ff6600;
}