-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
102 lines (100 loc) · 1.59 KB
/
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
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
.darkmode-button{
transition: 0.5s;
}
.darkmode-button:hover{
transform: scale(1.2);
}
#top-rated{
transition: 0.5s;
}
#top-rated:hover{
color: black;
transform: scale(1.2);
}
#trailer-button{
transition: 0.5s;
}
#trailer-button:hover{
color: black;
transform: scale(1.2);
}
#show-more-container{
margin: 10px;
padding: 10px;
}
#home-button{
transition: 0.4s;
}
#home-button:hover{
transform: scale(1.2);
}
#show-more{
font-weight: bolder;
transition: 0.5s;
}
#show-more:hover{
transform: scale(1.2);
}
.col{
/* background: #c00;
border-radius: 25px; */
transition: 1s;
}
.col:hover{
opacity: 90%;
transform: scale(1.4);
z-index: 4;
}
.trailer-box{
display: none;
}
#hvlogo{
transition: 0.5s;
height: 40px;
width: 40px;
}
#hvlogo:hover{
transform: scale(1.5);
}
.darkmode-button{
margin-right: 10px;
}
.card-image{
width: 100%;
height: 225px;
object-fit: cover;
}
/* .hidden{
opacity: 0;
display: none;
} */
.text-body-secondary{
font-weight: bold;
}
/* .card-body{
height: 280px;
} */
.card-image{
opacity: 0%;
transition: opacity 2s ease-in-out;
}
/* .loaded{
opacity: 1;
} */.social-icons svg{
transition: 0.5s;
}
.social-icons svg:hover{
transform: scale(1.4);
}
#footer-logo{
transition: 0.5s;
}
#footer-logo:hover{
transform: scale(1.5);
}
#copyright-text{
transition: 0.5s;
}
#copyright-text:hover{
transform: scale(1.5);
}