-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
50 lines (42 loc) · 855 Bytes
/
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
@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');
*{
font-family: 'Open Sans', sans-serif;
box-sizing: border-box;
margin: 0;
}
body{
background-color: rgb(46, 46, 46);
}
header{
display: flex;
justify-content: flex-end;
padding: 1rem;
margin: 0;
background-color: #445c77;
box-shadow: 0 4px 5px rgba(0, 0, 0, 0.2);
}
main{
color: #fff;
display: flex;
flex-wrap: wrap;
margin: 0;
justify-content: center;
}
.movie-container {
background-color:#445c77;
border-radius: 3px;
box-shadow: 0 4px 5px rgba(0, 0, 0, 0.2);
margin: 1rem;
width: 300px;
}
.info {
color: #eee;
display: flex;
align-items: center;
justify-content: space-between;
padding: 0.5rem 1rem 1rem;
letter-spacing: 0.5px;
}
img {
width: 100%;
}