-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
97 lines (82 loc) · 1.33 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
body {
background-color: #121212;
color: #BB86fc;
}
#appTitle {
text-align: center;
margin: 0px auto;
display: block;
font-family: 'Staatliches', sans-serif;
font-size: 80px;
}
#genreForm, #playBtn {
text-align: center;
margin: 0px auto;
display: block;
font-family: 'Staatliches', sans-serif;
}
#movieInfo {
width: 80%;
margin: 32px auto;
}
#movieInfo:after {
content: "";
display: table;
clear: both;
}
#moviePoster, #movieText {
width: 25%;
float: left;
}
img#moviePoster {
width: 50%;
height: auto;
display: block;
margin: auto;
}
#movieText {
font-family: 'Questrial';
color: #FEFBEA;
line-height: 1.25;
}
#movieTitle, #movieOverview {
padding: 32px;
}
#playBtn {
margin-top: 20px;
font-size: 25px;
padding: 7px 10px;
border-radius: 10px;
border-style: none;
background-color: #BB86fcD9;
color: #6200EE;
cursor: pointer;
}
label {
display: block;
font-size: 35px;
margin-bottom: 5px;
}
select {
width: 200px;
height: auto;
}
#likeOrDislikeBtns {
text-align: center;
margin: 0px auto;
}
#likeBtn, #dislikeBtn {
padding: 15px 25px;
font-size: 25px;
border-radius: 12px;
border-style: none;
cursor: pointer;
}
#likeBtn {
background-color: #249e57;
color: darkgreen;
}
#dislikeBtn {
background-color: #c74a4a;
color: #910000;
}