-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
83 lines (67 loc) · 2.55 KB
/
Copy pathmain.css
File metadata and controls
83 lines (67 loc) · 2.55 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
body {
background-color: #000000;
color: #ffffff;
margin: 0; padding: 0;
font-family: 'Georgia', serif;
}
header {
display: flex; flex-wrap: wrap; gap: 20px; padding: 15px;
border-bottom: 1px solid #333; width: 100%; box-sizing: border-box;
}
header p { margin-left: 1vh; margin-bottom: 0; margin-top: 0; }
header a { font-weight: bold; text-decoration: none; color: #c2abce; }
header a:hover { text-decoration: underline; color: #ffffff; }
a { text-decoration: none; color: #c2abce; }
#videoContainer {
display: grid; grid-template-columns: 1fr; gap: 0px;
width: 100%; box-sizing: border-box; padding-bottom: 120px;
}
@media (min-width: 1400px) {
#videoContainer { grid-template-columns: repeat(2, 1fr); }
}
video, img {
width: 100%; height: auto; max-height: 80vh;
background: #111; object-fit: contain; display: block;
}
.meme-wrapper {
position: relative; border-bottom: 2px solid #222; background: #0a0a0a;
}
.controls { display: flex; justify-content: center; gap: 60px; padding: 25px; }
.btn {
background: none; border: none; cursor: pointer;
font-size: 35px;
color: #555;
transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), color 0.2s;
text-decoration: none !important;
display: inline-block;
line-height: 1;
}
.btn:hover { transform: scale(1.5); color: #fff; text-decoration: none !important; }
.btn-fav.active { color: #ffeb3b !important; }
.btn-seen.active { color: #00d4ff !important; }
.footer-nav {
position: fixed; bottom: 0; left: 0; right: 0; height: 85px;
background: rgba(10, 10, 10, 0.9); backdrop-filter: blur(15px);
-webkit-backdrop-filter: blur(15px);
display: flex; justify-content: space-around; align-items: center;
border-top: 1px solid #333; z-index: 2000;
}
.nav-btn {
background: none; border: none; color: #888;
font-weight: bold; cursor: pointer; font-size: 14px; font-family: inherit;
text-decoration: none;
}
.nav-btn.active { color: #c2abce; text-shadow: 0 0 10px #c2abce; }
.nav-btn.back-btn {
background: #c2abce; color: #000; border-radius: 20px;
padding: 8px 18px; margin-right: 10px; font-size: 12px;
}
[data-tooltip] { position: relative; }
[data-tooltip]::after {
content: attr(data-tooltip);
position: absolute; bottom: 130%; left: 50%; transform: translateX(-50%);
background: #000; color: #fff; padding: 5px 10px; border-radius: 4px;
font-size: 11px; white-space: nowrap; opacity: 0; pointer-events: none; transition: 0.2s;
border: 1px solid #444;
}
[data-tooltip]:hover::after { opacity: 1; }