forked from fikrcamp/tv-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
86 lines (74 loc) · 1.21 KB
/
style.css
File metadata and controls
86 lines (74 loc) · 1.21 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
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100&family=Source+Sans+Pro:wght@600;700;900&display=swap");
* {
padding: 0;
margin: 0;
font-family: "Roboto", sans-serif;
font-family: "Source Sans Pro", sans-serif;
}
.header {
background-color: #141414;
color: white;
display: flex;
justify-content: space-between;
align-items: center;
height: 60px;
}
.nav {
display: flex;
align-items: center;
}
.nav li {
list-style: none;
padding: 0px 6px;
}
.logo {
height: 30px;
}
.avatar {
height: 60px;
}
.search-section {
display: flex;
flex-direction: column;
align-items: center;
padding: 25px 0px;
}
.search-box {
margin-top: 10px;
padding: 5px 5px;
background: black;
color: white;
border: 1px solid white;
width: 300px;
border-radius: 2px;
}
#search{
background: red;
border:none;
padding:7px 12px;
color:white;
font-size:14px
}
.main {
background: black;
color: white;
min-height: 100vh;
}
.movies-section {
display: flex;
flex-wrap: wrap;
margin: 15px 50px;
}
.movie-card {
margin: 0px 10px;
}
.movie-image {
height: 250px;
}
.movie-image img {
height: inherit;
}
.movie-heading {
font-weight: bold;
color: red;
}