-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
108 lines (95 loc) · 1.75 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
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: sans-serif;
background-color: #f7f7f7;
overflow-y: scroll;
}
.search-box {
position: relative;
display: flex;
align-items: baseline;
margin-top: 50px;
margin-left: 50px;
}
.search-box input[type="text"] {
width: 400px;
height: 40px;
border-radius: 20px;
padding: 10px 20px;
border: none;
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
font-size: 18px;
color: #333;
outline: none;
}
.suggestions {
position: absolute;
top: 150 px;
left: 50px;
width: 400px;
list-style-type: none;
margin-top: 10px;
border-radius: 0 0 20px 20px;
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
background-color: #fff;
}
.suggestions li {
padding: 10px 20px;
cursor: pointer;
}
.suggestions li:hover {
background-color: #eee;
}
#search-button {
margin-top: 10px;
margin-left: 10px;
padding: 10px 20px;
background-color: #333;
color: #fff;
border: none;
border-radius: 20px;
font-size: 18px;
cursor: pointer;
transition: background-color 0.2s ease;
}
#search-button:hover {
background-color: #444;
}
.movie-details-wrapper {
align-items: left;
margin-top: 50px;
margin-left: 50px;
margin-bottom: 50px;
margin-right: 50px;
}
.movie-details-wrapper img {
max-width: 20%;
margin: 20px auto;
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.movie-details-wrapper p {
font-size: 18px;
color: #333;
margin-top: 10px;
text-align: left;
}
tr{
height: 25px;
text-align: justify;
}
tr:nth-child(even) {
background-color: #cbe1ef;
}
tr:nth-child(odd) {
background-color: #ffffff;
}
th{
width: 100px;
}
td{
width:1000px;
}