-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnew-movie.component.scss
More file actions
58 lines (48 loc) · 1004 Bytes
/
new-movie.component.scss
File metadata and controls
58 lines (48 loc) · 1004 Bytes
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
.new-movie-page {
padding: 50px;
#new-movie-bar {
width: 100%;
border: 0;
color: #ffffff;
font-size: 5rem;
background-color: transparent;
border-bottom: 5px dashed gray;
margin-top: 25px;
}
.results-list {
margin-top: 10px;
padding: 5px;
.movie-card {
display: flex;
flex-direction: row;
justify-content: flex-start;
padding: 25px;
margin-bottom: 5px;
background-color: #2a2e35;
box-shadow: rgb(1, 1, 1) 4px 0px 10px -3px;
img {
height: 200px;
}
.details {
margin-left: 15px;
padding: 5px;
.title {
font-size: 2rem;
}
.year {
padding: 5px 5px 5px 5px;
font-size: 0.8rem;
}
.overview {
padding: 15px 15px 15px 0;
line-height: 1.2rem;
max-width: 550px;
}
.btn-add {
margin-top: 10px;
padding: 5px;
}
}
}
}
}