-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
64 lines (54 loc) · 809 Bytes
/
styles.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
body {
background-color: rgb(34, 40, 47);
font-family: TiemposTextWeb-Semibold, Georgia, serif;
font-weight: 600;
width: 100vw;
height: 100vh;
margin: 0;
}
a {
text-decoration: none;
}
.container {
display: flex;
flex-direction: column;
gap: 8px;
padding: 8px;
}
#app {
display: flex;
gap: 24px;
margin: 0 16px;
}
#app, .movie-title, a {
color: white;
}
/* .movie-title:hover,
a:hover {
color: #40bcf4;
} */
.movie {
display: flex;
gap: 8px;
max-width: 200px;
min-width: 80px;
}
.movie-poster {
width: 35px;
height: 52px;
}
.movie-details {
display: flex;
flex-direction: column;
min-width: 0;
max-width: 157px;
}
.movie-title {
display: block;
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
}
.hidden {
display: none;
}