-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
68 lines (56 loc) · 1.03 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
/* Dashboard Styling */
@import url('https://fonts.googleapis.com/css2?family=Karla:ital,wght@0,400;0,700;1,400;1,700&display=swap');
* {
font-family: 'Karla', sans-serif;
}
.sidenav {
max-width: 300px;
}
.bg-dark {
background-color: #0E141B !important;
}
.bg-dark-secondary {
background-color: #151E28;
}
.bg-dark-tertiary {
background-color: #1C2835;
}
.icon {
--size: 35px;
display: inline-block;
width: var(--size);
height: var(--size);
-webkit-mask-size: cover;
mask-size: cover;
}
.icon-bike {
background: white;
-webkit-mask-image: url('/img/icon/bell-solid.svg');
mask-image: url('/img/icon/bell-solid.svg');
}
.fa-2x {
font-size: 2px;
}
.centered {
top: 50%;
-ms-transform: translateY(-50%);
transform: translateY(-50%);
position: absolute;
width: 100%;
text-align: center;
color: white;
left: 0; /* chart js*/
}
a {
color: white;
}
a:hover {
color: white;
opacity: 70%;
}
.test {
position: relative;
}
.card-max {
height: 100%;
}