-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.css
More file actions
57 lines (40 loc) · 1.04 KB
/
about.css
File metadata and controls
57 lines (40 loc) · 1.04 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
/* Style for the content container */
.content-container {
display: flex;
align-items: center;
padding: 20px;
}
/* Style for the text content */
.text-content {
flex: 1; /* Take up available horizontal space */
}
/* Style for the image container */
.image-container {
flex: 1; /* Take up available horizontal space */
text-align: right; /* Align the image to the right */
}
/* Additional styling for the image (adjust as needed) */
.image-container img {
max-width: 100%; /* Ensure the image doesn't overflow its container */
height: auto; /* Maintain the image's aspect ratio */
#video-tag {
color: #333;
font-size: 24px;
text-align: center;
}
}
#video-tag {
color: #333;
font-size: 24px;
text-align: center;
}
.video-section {
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh; /* Ensure the video section covers the entire viewport height */
}
.video-section video {
max-width: 100%;
max-height: 100%;
}