-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
108 lines (90 loc) · 1.47 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: arial;
}
body {
background-color: rgb(20,20,20);
}
.container {
max-width: 1280px;
margin: 0 auto;
padding: 0 2%;
display: flex;
flex-wrap: wrap;
}
header {
background-color: rgb(40,40,40);
padding: 8px 0;
}
.logo {
display: inline-block;
vertical-align: middle;
}
.logo img {
max-width: 120px;
width: 100%;
}
.menu {
width: 40%;
display: flex;
margin-top: 10px;
}
.menu-itens {
padding: 0 20px;
display: inline-block;
}
.menu-itens a {
color: rgb(120,120,120);
margin-right: 10px;
text-decoration: none;
}
.menu-itens a:hover {
color: white;
}
.search {
width: 60%;
text-align: right;
}
.input-search {
position: relative;
width: 200px;
display: inline-block;
}
.input-search i {
position: absolute;
left: 4px;
top: 15px;
color: rgb(100,100,100);
}
.input-search input[type=text] {
width: 100%;
height: 30px;
border: 1px solid rgb(120,120,120);
margin: 9px 0;
padding-left: 24px;
background-color: rgb(40,40,40);
color: white;
}
.banner-principal {
width: 100%;
height: 400px;
background-size: cover;
background-position: center;
}
.main h2 {
color: white;
width: 100%;
margin: 30px 0;
}
.card-movie {
width: 20%;
}
.card-movie img {
width: 100%;
transition: 1s;
}
.card-movie img:hover {
transform: scale(1.1,1.1);
}