-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathstyle.css
More file actions
130 lines (116 loc) · 2.06 KB
/
style.css
File metadata and controls
130 lines (116 loc) · 2.06 KB
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
body {
background-color: crimson;
height: auto;
overflow-y: scroll;
position: relative;
}
.background {
height: auto;
}
.header {
position: fixed;
top: 0px;
z-index: 1;
right: 0;
left: 0;
background-color: crimson;
}
.title {
margin: auto;
text-align: center;
padding-top: 30px;
font-family: "Julius Sans One", sans-serif;
font-size: 75px;
font-weight: bold;
text-shadow: 4px 4px red;
}
.moviereel {
width: 70px;
display: block;
margin-left: auto;
margin-right: auto;
margin-top: 20px;
border: none;
border-radius: 50%;
box-shadow: 4px 4px red;
}
.form {
margin: auto;
margin-top: 30px;
text-align: center;
padding: 5px;
}
.input {
width: 50%;
padding: 12px 20px;
margin: 8px 0;
border: 2px solid red;
border-radius: 5px;
box-shadow: 4px 4px red;
}
.button {
background-color: white; /* Green */
border: none;
border-radius: 5px;
color: red;
padding: 9.5px 18px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
font-family: "Roboto", sans-serif;
box-shadow: 4px 4px red;
}
.movieinfo {
display: flex;
margin-top: 100px;
}
.moviecard {
margin: 20px;
margin-top: 250px;
width: 250px;
position: relative;
font-family: "Roboto", sans-serif;
}
.poster {
width: 250px;
height: 370px;
padding-bottom: 10px;
}
.cardtext {
margin: auto;
padding: 10px;
text-align: center;
border-style: solid;
border-width: 1px;
border-color: white;
border-radius: 5px;
font-family: "Roboto", sans-serif;
background-color: rgba(255, 255, 255, 0.5);
box-shadow: 5px 1px 1px red;
}
.movieheading {
height: auto;
}
.infocard {
text-align: center;
height: auto;
padding: 15px;
overflow: auto;
border-style: solid;
border-width: 1px;
border-color: white;
border-radius: 5px;
font-family: "Roboto", sans-serif;
background-color: rgba(255, 255, 255, 0.5);
box-shadow: 5px 1px 1px red;
}
.detailedinfo {
overflow-y: scroll;
margin: auto;
margin-top: 25px;
margin-bottom: 25px;
padding: 10px;
height: auto;
width: 600px;
}