mmsubandmovies commited on
Commit
7bf0dc7
1 Parent(s): 1ac781b

Update style.css

Browse files
Files changed (1) hide show
  1. style.css +140 -19
style.css CHANGED
@@ -1,28 +1,149 @@
1
- body {
2
- padding: 2rem;
3
- font-family: -apple-system, BlinkMacSystemFont, "Arial", sans-serif;
 
 
 
 
 
4
  }
5
 
6
- h1 {
7
- font-size: 16px;
8
- margin-top: 0;
 
 
 
 
 
 
9
  }
10
 
11
- p {
12
- color: rgb(107, 114, 128);
13
- font-size: 15px;
14
- margin-bottom: 10px;
15
- margin-top: 5px;
16
  }
17
 
18
- .card {
19
- max-width: 620px;
20
- margin: 0 auto;
21
- padding: 16px;
22
- border: 1px solid lightgray;
23
- border-radius: 16px;
 
 
 
 
 
 
 
 
 
24
  }
25
 
26
- .card p:last-child {
27
- margin-bottom: 0;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
28
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ body, html {
2
+ margin: 0;
3
+ padding: 0;
4
+ width: 100%;
5
+ height: 100%;
6
+ background-color: #121212;
7
+ color: #e0e0e0;
8
+ overflow: hidden; /* Prevent body from scrolling */
9
  }
10
 
11
+ #loading-screen {
12
+ position: fixed;
13
+ width: 100%;
14
+ height: 100%;
15
+ background-color: black;
16
+ display: flex;
17
+ justify-content: center;
18
+ align-items: center;
19
+ z-index: 9999; /* Ensure it's on top of everything else */
20
  }
21
 
22
+ #content {
23
+ display: none; /* Hide content initially */
 
 
 
24
  }
25
 
26
+ /* Existing styles */
27
+ .container-fluid {
28
+ margin-top: 20px;
29
+ }
30
+ #heading {
31
+ text-align: center;
32
+ padding: 20px;
33
+ padding-top:5px;
34
+ }
35
+ .animated-heading {
36
+ font-size: 2rem;
37
+ font-weight: bold;
38
+ text-align:top;
39
+ color: #bb86fc;
40
+ text-transform: uppercase;
41
  }
42
 
43
+ @keyframes bounce-in-fwd {
44
+ 0% {
45
+ transform: scale(0);
46
+ opacity: 0;
47
+ }
48
+ 100% {
49
+ transform: scale(1);
50
+ opacity: 1;
51
+ }
52
+ }
53
+ .list-container {
54
+ padding: 20px;
55
+ max-height: calc(100vh - 40px);
56
+ overflow-y: auto;
57
+ background-color: #000;
58
+ scrollbar-width: thin;
59
+ scrollbar-color: #bb86fc #000;
60
+ }
61
+ .list-container::-webkit-scrollbar {
62
+ width: 8px;
63
+ }
64
+ .list-container::-webkit-scrollbar-track {
65
+ background: #000;
66
+ }
67
+ .list-container::-webkit-scrollbar-thumb {
68
+ background-color: #bb86fc;
69
+ border-radius: 10px;
70
+ }
71
+ .list-group-item {
72
+ background-color: #000 !important;
73
+ border: none;
74
+ margin-bottom: 5px;
75
+ }
76
+ .list-group-item a {
77
+ text-decoration: none;
78
+ color: #e0e0e0;
79
+ display: block;
80
+ padding: 10px 15px;
81
+ border: 1px solid #bb86fc;
82
+ border-radius: 5px;
83
+ transition: background-color 0.3s, color 0.3s;
84
+ }
85
+ .list-group-item a:hover {
86
+ background-color: #bb86fc;
87
+ color: #121212;
88
  }
89
+ #playlist {
90
+ background: #1e1e1e;
91
+ border-radius: 10px;
92
+ padding: 15px;
93
+ box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
94
+ }
95
+ #player-container {
96
+ height: calc(100vh - 200px); /* Adjust height based on your layout */
97
+ background: #000;
98
+ border-radius: 10px;
99
+ box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
100
+ margin-top: 20px;
101
+ margin-left: 20px;
102
+ position: relative;
103
+ overflow: hidden;
104
+ }
105
+ #tv-screen {
106
+ width: 100%;
107
+ height: 100%;
108
+ background: #000;
109
+ border: 10px solid #333;
110
+ border-top-width: 40px;
111
+ border-radius: 10px;
112
+ box-shadow: 0 0 20px rgba(0, 0, 0, 0.3) inset;
113
+ }
114
+ #player {
115
+ width: 100%;
116
+ height: 100%;
117
+ }
118
+
119
+
120
+
121
+ /* Media queries for responsiveness */
122
+ @media (max-width: 768px) {
123
+ .container-fluid {
124
+ padding: 5px;
125
+ }
126
+
127
+ .list-container {
128
+ padding: 0;
129
+ max-height: 65vh;
130
+ margin-top: 10px;
131
+ order: 2;
132
+ }
133
+
134
+ #player-container {
135
+ width: 100%;
136
+ height: 35vh; /* Adjusted to fit within the viewport */
137
+ margin-top: 0;
138
+ margin-left: 0;
139
+ order: 1; /* Move to the top on mobile */
140
+ }
141
+
142
+ #playlist {
143
+ max-height: 55vh; /* Adjusted to fit within the viewport */
144
+ }
145
+
146
+ .animated-heading {
147
+ font-size: 1.5rem;
148
+ }
149
+ }