-
Notifications
You must be signed in to change notification settings - Fork 1
/
favorite.css
104 lines (88 loc) · 1.61 KB
/
favorite.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
/* Heading related */
.heading{
display: flex;
align-items: center;
justify-content: center;
font-size: 40px;
}
/* Home button related */
.home button{
color: white;
background: none;
border: none;
}
#return-to-home{
cursor: pointer;
font-size: 1.2rem;
}
#return-to-home:hover{
color: grey;
}
/* Clear all button related */
#clear-btn{
border: none;
background: none;
position: absolute;
right: 10px;
font-size: 1.2rem;
margin-bottom: 15px;
}
#clear-btn:hover{
background: blueviolet;
text-decoration: underline;
}
/* Movie list display container related */
.movie-container{
padding-top: 15px;
}
.list-item{
height: 80px;
margin: 20px 50px;
display: flex;
justify-content: space-between;
align-items: center;
border-bottom: solid black 2px;
background-color: black;
color: white;
}
.movie-details{
display: flex;
align-items:center;
}
/* To delete movie from the list */
.delete-movie-from-list{
position: absolute;
right: 60px;
}
.delete-movie-from-list:hover{
transform: scale(0.8);
}
/* Movie poster display related in the list */
.thumbnail{
width: 40px;
height: 65px;
}
.thumbnail img{
width: 100%;
height: 100%;
min-width: 50px;
}
/* Movie title in the list related */
.title{
margin-left: 20px;
}
.title a{
font-size: 1.6rem;
font-weight: bolder;
transition: all 0.2s ease-in-out;
text-decoration: none;
}
.title a:hover{
color: yellow;
font-size: 1.3rem;
text-decoration: underline;
}
.title span{
margin-left: 5px;
font-size: 1.1rem;
}