-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
97 lines (96 loc) · 1.74 KB
/
Copy pathstyle.css
File metadata and controls
97 lines (96 loc) · 1.74 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
body {
background-color: #364f6b;
}
#main {
border: 0.8px solid gray;
width: 100%;
background-color: white;
max-width: 600px;
min-height: 500px;
margin: 5% auto;
padding: 3% 10%;
border-radius: 15px;
}
.input {
display: flex;
justify-content: space-around;
height: 50px;
}
.input > input[type=text] {
width: 300px;
border: 3px solid black;
}
.input > input[type=text]:focus {
outline: none;
animation: border 2s ease-in;
border-bottom: 4px solid #364f6b;
}
input[type="button"]{
max-width: 300px;
width: 30%;
background-color: #3e4a61;
color: #e3e3e3;
padding: 10px;
border-radius: 10px;
margin: 1% 35%;
}
input[type="button"]:hover{
filter: brightness(0.9);
cursor: pointer;
}
#movie {
width: 100%;
margin-top: 10%;
}
#movie > img {
width: 100%;
}
#movie-container {
width: 100%;
display: flex;
gap: 5%;
border-radius: 10px;
height: 350px;
padding: 2%;
box-shadow: 10px 10px 10px 10px rgba(0, 0, 0, 0.2);
position: relative;
}
#movie-header {
display: flex;
justify-content: space-between;
padding-right: 5%;
align-items: center;
}
#spinner {
border: 10px solid gray;
border-radius: 50%;
width: 200px;
height: 200px;
margin: 20% auto;
border-top: 10px solid black;
animation: loading ease-in-out 0.75s infinite ;
}
@keyframes loading {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
.hidden {
display: none;
}
.visible {
display: block;
}
#recommended{
width: 100px;
height: 20px;
position: absolute;
right: 0px;
top: 0px;
padding: 8px;
background-color: gold;
border-top-right-radius: 10px;
}