-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
175 lines (144 loc) · 2.7 KB
/
styles.css
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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
/* General Styles */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");
body {
font-family: 'Arial', sans-serif;
background-color: #121212e7;
color: #fff;
margin: 0;
padding: 0;
}
a {
color: #1db954;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
header {
background-color: #1f1f1fe8;
padding: 20px;
text-align: center;
}
h2 {
margin: 0;
font-size: 24px;
}
/* Dashboard Layout */
.dashboard {
max-width: 1200px;
margin: 20px auto;
padding: 20px;
background-color: #1f1f1fe2;
border-radius: 10px;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.8);
}
.stats {
display: flex;
justify-content: space-between;
margin-bottom: 20px;
}
.stats div {
background-color: #333;
padding: 15px 30px;
border-radius: 5px;
text-align: center;
font-size: 18px;
}
/* Table Styles */
table {
width: 100%;
border-collapse: collapse;
margin-bottom: 20px;
}
thead {
background-color: #333;
}
thead th {
padding: 12px 15px;
text-align: left;
font-size: 16px;
}
tbody tr {
border-bottom: 1px solid #444;
}
tbody td {
padding: 12px 15px;
font-size: 14px;
}
tbody tr:hover {
background-color: #333;
}
tbody td a {
color: #1db954;
}
tbody td a:hover {
text-decoration: underline;
}
/* Movie Creation Form */
.create-movie-form {
max-width: 600px;
margin: 20px auto;
padding: 20px;
background-color: #1f1f1f;
border-radius: 10px;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.8);
}
.create-movie-form h2 {
text-align: center;
margin-bottom: 20px;
}
.create-movie-form label {
display: block;
margin-bottom: 8px;
font-size: 14px;
}
.create-movie-form input,
.create-movie-form textarea,
.create-movie-form select {
width: 100%;
padding: 12px;
margin-bottom: 15px;
background-color: #333;
color: #fff;
border: none;
border-radius: 5px;
font-size: 14px;
}
.create-movie-form textarea {
resize: none;
height: 100px;
}
.create-movie-form input[type="file"] {
background-color: #444;
padding: 8px;
}
.create-movie-form button {
width: 100%;
padding: 12px;
background-color: #1db954;
color: #fff;
border: none;
border-radius: 5px;
font-size: 16px;
cursor: pointer;
}
.create-movie-form button:hover {
background-color: #1ed760;
}
/* Responsive Design */
@media (max-width: 768px) {
.stats {
flex-direction: column;
align-items: center;
}
.stats div {
margin-bottom: 10px;
}
.create-movie-form,
.dashboard {
width: 90%;
}
table {
font-size: 14px;
}
}