-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmovie-details.component.scss
More file actions
62 lines (53 loc) · 979 Bytes
/
movie-details.component.scss
File metadata and controls
62 lines (53 loc) · 979 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
59
60
61
62
.movie-details-page {
display: flex;
flex-direction: row;
padding: 50px;
.poster {
text-align: center;
.tagline {
padding: 20px;
}
}
.details {
display: flex;
flex-direction: column;
gap: 25px;
justify-content: flex-start;
padding: 20px;
line-height: 1.2rem;
.title {
font-size: 2.4rem;
font-weight: 700;
margin-top: 15px;
}
.overview {
}
.genres {
li {
display: inline;
max-width: 100px;
margin: 10px;
padding: 10px;
color: black;
background-color: #ffcb2b;
border-radius: 3px;
}
}
.toolbar {
margin-top: 40px;
.btn-back {
padding: 15px;
margin-right: 10px;
&:hover {
color: #ffcb2b;
}
}
.btn-remove {
font-size: 0.8rem;
padding: 10px;
border: 1px;
background-color: rgb(150, 8, 8);
}
}
}
}