-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathstyle.css
More file actions
149 lines (138 loc) · 3.07 KB
/
style.css
File metadata and controls
149 lines (138 loc) · 3.07 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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
body, html {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
background-color: #121212;
color: #e0e0e0;
overflow: hidden; /* Prevent body from scrolling */
}
#loading-screen {
position: fixed;
width: 100%;
height: 100%;
background-color: black;
display: flex;
justify-content: center;
align-items: center;
z-index: 9999; /* Ensure it's on top of everything else */
}
#content {
display: none; /* Hide content initially */
}
/* Existing styles */
.container-fluid {
margin-top: 20px;
}
#heading {
text-align: center;
padding: 20px;
padding-top:5px;
}
.animated-heading {
font-size: 2rem;
font-weight: bold;
text-align:top;
color: #bb86fc;
text-transform: uppercase;
}
@keyframes bounce-in-fwd {
0% {
transform: scale(0);
opacity: 0;
}
100% {
transform: scale(1);
opacity: 1;
}
}
.list-container {
padding: 20px;
max-height: calc(100vh - 40px);
overflow-y: auto;
background-color: #000;
scrollbar-width: thin;
scrollbar-color: #bb86fc #000;
}
.list-container::-webkit-scrollbar {
width: 8px;
}
.list-container::-webkit-scrollbar-track {
background: #000;
}
.list-container::-webkit-scrollbar-thumb {
background-color: #bb86fc;
border-radius: 10px;
}
.list-group-item {
background-color: #000 !important;
border: none;
margin-bottom: 5px;
}
.list-group-item a {
text-decoration: none;
color: #e0e0e0;
display: block;
padding: 10px 15px;
border: 1px solid #bb86fc;
border-radius: 5px;
transition: background-color 0.3s, color 0.3s;
}
.list-group-item a:hover {
background-color: #bb86fc;
color: #121212;
}
#playlist {
background: #1e1e1e;
border-radius: 10px;
padding: 15px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
#player-container {
height: calc(100vh - 200px); /* Adjust height based on your layout */
background: #000;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
margin-top: 20px;
margin-left: 20px;
position: relative;
overflow: hidden;
}
#tv-screen {
width: 100%;
height: 100%;
background: #000;
border: 10px solid #333;
border-top-width: 40px;
border-radius: 10px;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.3) inset;
}
#player {
width: 100%;
height: 100%;
}
/* Media queries for responsiveness */
@media (max-width: 768px) {
.container-fluid {
padding: 5px;
}
.list-container {
padding: 0;
max-height: 65vh;
margin-top: 10px;
order: 2;
}
#player-container {
width: 100%;
height: 35vh; /* Adjusted to fit within the viewport */
margin-top: 0;
margin-left: 0;
order: 1; /* Move to the top on mobile */
}
#playlist {
max-height: 55vh; /* Adjusted to fit within the viewport */
}
.animated-heading {
font-size: 1.5rem;
}
}