-
Notifications
You must be signed in to change notification settings - Fork 2
/
custom.css
65 lines (53 loc) · 937 Bytes
/
custom.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
/*
* [2022/2023]
* 01UDFOV Applicazioni Web I / 01TXYOV Web Applications I
* Lab 4
*/
/* Global */
.vheight-100 {
min-height: 100vh;
}
.navbar-padding {
padding-left: 1rem;
padding-right: 1rem;
}
.below-nav {
padding-top: 5rem;
}
/* Filters and projects */
.list-group-item {
background-color: transparent;
}
.list-group-item.active {
background-color: #055c9d;
border-color: #055c9d;
}
.list-group-item-action:hover {
background-color: #0e86d4;
color: white;
}
small.watch-date {
text-align: right;
}
p.title {
display: inline ;
margin-left: 1rem;
}
/* Class for favorite movies */
.favorite {
color: red;
}
/* Class for empty stars */
.empty-star:hover {
fill: #0e86d4;
color: #055c9d;
}
/* Add task button */
.fixed-right-bottom {
position: fixed;
right: 0;
bottom: 0;
z-index: 1030;
margin: 0 1.5rem 1.5rem 0;
border-radius: 50%;
}