-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
129 lines (126 loc) · 2.49 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
/* Source: Manuel Pinto */
background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
background-size: 400% 400%;
animation: gradient 15s ease infinite;
height: 100vh;
font-family: 'Josefin Sans', sans-serif;
}
@keyframes gradient {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}
.logo{
height: 60px;
width: 60px;
margin-left: 15px;
margin-top: 30px;
}
.searchbar{
margin-right: 15px;
}
nav{
display: flex;
justify-content: space-around;
align-items: center;
}
nav ul li{
list-style: none;
display: inline-block;
margin: 10px;
padding: 10px;
font-size: 26px;
font-weight: 600;
}
ul{
padding: 0px 40px;
margin-top: 30px;
border: 1px solid black;
background-color: #23a6d5;
background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
background-size: 400% 400%;
opacity: 70%;
animation: gradient 15s ease infinite;
border-radius: 30px
}
#home{
color: #40128B;
}
.searchbar{
width: 20%;
background: rgba(255, 255, 255, 0.25);
display: flex;
align-items: center;
border-radius: 30px;
padding: 0px 20px;
margin-top: 30px;
border: 1px solid black;
}
.searchbar input{
background: transparent;
flex: 1;
border: none;
outline: none;
padding: 20px 15px;
font-family: 'Josefin Sans', sans-serif;
font-size: 20px;
}
.searchbar img{
width: 30px;
height: 30px;
}
.login-signup{
margin-top: 30px;
}
#login{
font-family: 'Josefin Sans', sans-serif;
font-size: 18px;
font-weight: 600;
background-color: #0C134F;
color: rgb(213, 209, 209);
border-radius: 20px;
padding: 10px;
margin-right: 16px;
}
#signup{
font-family: 'Josefin Sans', sans-serif;
font-size: 18px;
font-weight: 600;
background-color: #0C134F;
color: rgb(213, 209, 209);
border-radius: 20px;
padding: 10px;
}
.section-1{
display: flex;
align-items: center;
justify-content: center;
}
.movie-box{
height: 450px;
width: 300px;
background: blue;
margin: 60px 30px;
border-radius: 20px;
text-align: center;
}
.movie-box img{
border-radius: 20px;
}
footer{
text-align: center;
font-size: 20px;
opacity: 50%;
}