-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
155 lines (133 loc) · 2.52 KB
/
style.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
body {
font-family: 'Arial', sans-serif;
line-height: 1.6;
margin: 0;
padding: 0;
background-color: #1a1a1a;
color: #e0e0e0;
}
.container {
width: 90%;
max-width: 1200px;
margin: auto;
overflow: hidden;
padding: 20px;
}
header {
background: #2c3e50;
color: white;
padding: 1rem 0;
box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
header a {
color: #ffffff;
text-decoration: none;
text-transform: uppercase;
font-size: 16px;
}
header ul {
padding: 0;
list-style: none;
display: flex;
justify-content: space-around;
}
header li {
padding: 0 15px;
}
header #branding {
text-align: center;
margin-bottom: 10px;
}
header #branding h1 {
margin: 0;
font-size: 2rem;
}
.movie-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
gap: 20px;
padding: 20px 0;
}
.movie {
background: #2c3e50;
padding: 15px;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
transition: transform 0.3s ease;
}
.movie:hover {
transform: translateY(-5px);
}
.movie h3 {
margin-top: 0;
color: #ecf0f1;
}
.movie .category {
font-style: italic;
color: #bdc3c7;
}
.movie iframe {
width: 100%;
height: 200px;
border: none;
border-radius: 4px;
margin-bottom: 10px;
}
form {
background: #34495e;
padding: 20px;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
form input[type="text"], form textarea, form select {
width: 100%;
padding: 10px;
margin-bottom: 15px;
border: 1px solid #7f8c8d;
border-radius: 4px;
background-color: #2c3e50;
color: #ecf0f1;
}
form input[type="submit"], .button {
background: #e74c3c;
color: #fff;
padding: 10px 15px;
border: none;
border-radius: 4px;
cursor: pointer;
transition: background-color 0.3s ease;
}
form input[type="submit"]:hover, .button:hover {
background: #c0392b;
}
.button {
display: inline-block;
text-decoration: none;
margin-top: 10px;
}
#message {
padding: 10px;
margin-top: 10px;
background-color: #27ae60;
color: white;
display: none;
border-radius: 4px;
}
#category-list {
display: flex;
flex-wrap: wrap;
gap: 10px;
margin-bottom: 20px;
}
.category-button {
background: #34495e;
color: white;
border: none;
padding: 5px 10px;
border-radius: 3px;
cursor: pointer;
transition: background-color 0.3s ease;
}
.category-button.active {
background: #e74c3c;
}