-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
101 lines (88 loc) · 1.61 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
/* Global Styles */
body {
margin: 0;
font-family: Arial, sans-serif;
background-color: #f4f4f9;
color: #333;
}
/* Container */
.container {
display: flex;
flex-direction: column;
align-items: center;
padding: 20px;
}
/* Header */
header {
text-align: center;
margin-bottom: 30px;
}
header h1 {
font-size: 2.5rem;
color: #2d87e3;
}
/* Search Bar */
.search-bar {
display: flex;
justify-content: center;
align-items: center;
margin-bottom: 20px;
}
.search-bar input {
width: 300px;
padding: 10px;
border: 2px solid #ccc;
border-radius: 5px;
font-size: 1rem;
outline: none;
margin-right: 10px;
}
.search-bar input:focus {
border-color: #2d87e3;
}
.search-bar button {
padding: 10px 20px;
background-color: #2d87e3;
color: white;
border: none;
border-radius: 5px;
font-size: 1rem;
cursor: pointer;
transition: background-color 0.3s ease;
}
.search-bar button:hover {
background-color: #205ba0;
}
/* Movie Details */
.movie-details {
text-align: center;
background: white;
box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
padding: 20px;
border-radius: 10px;
max-width: 400px;
width: 100%;
}
.movie-details h2 {
font-size: 1.5rem;
color: #333;
margin-bottom: 10px;
}
.movie-details p {
font-size: 1rem;
color: #666;
margin-bottom: 20px;
}
.movie-details img {
width: 100%;
height: auto;
border-radius: 10px;
border: 1px solid #ccc;
}
/* Footer */
footer {
margin-top: 30px;
text-align: center;
font-size: 0.9rem;
color: #999;
}