-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
84 lines (75 loc) · 1.34 KB
/
Copy pathstyle.css
File metadata and controls
84 lines (75 loc) · 1.34 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
/* General Styling */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body, html {
height: 100%;
font-family: Arial, sans-serif;
}
/* Fullscreen GIF background */
#gif-bg {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
object-fit: cover;
opacity: 1; /* Adjust transparency as needed */
}
/* Content wrapper */
.content {
position: relative;
z-index: 1;
padding: 20px;
border-radius: 10px;
max-width: 800px;
margin: 50px auto;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
/* Header styling */
header {
background-color: rgba(76, 175, 80, 0.8); /* Slightly transparent header */
padding: 20px;
text-align: center;
color: white;
border-radius: 10px;
}
h1 {
font-size: 2.5em;
}
section {
margin-bottom: 20px;
}
/* Footer styling */
footer {
text-align: center;
padding: 20px;
font-size: 0.9em;
color: #777;
}
/* Video player with transparent background */
.media-player {
position: relative;
background: rgba(0, 0, 0, 0.5); /* Transparent background for the player */
border: none;
margin: 20px auto;
width: 80%;
border-radius: 10px;
}
.media-player video {
width: 100%;
height: auto;
border-radius: 10px;
}
/* Add some hover effects to links */
a {
color: #4CAF50;
text-decoration: none;
font-weight: bold;
}
a:hover {
text-decoration: underline;
}