-
-
Notifications
You must be signed in to change notification settings - Fork 353
Expand file tree
/
Copy pathstyles.css
More file actions
95 lines (77 loc) · 1.7 KB
/
Copy pathstyles.css
File metadata and controls
95 lines (77 loc) · 1.7 KB
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
/* You can add global styles to this file, and also import other style files */
:root {
--slider-primary: #66bb6a; /* Using the same green as your userday table */
--slider-track: #e0e0e0;
--slider-thumb: #66bb6a;
}
html, body { height: 100%; }
body { margin: 0; font-family: Roboto, "Helvetica Neue", sans-serif;
overflow: hidden; /* keep this — body itself should not scroll */ }
app-root {
display: flex;
flex-direction: column;
height: 100%;
overflow: hidden;
max-width: 100vw;
}
h1, h2, h3 {
font-weight: 400;
}
.mat-typography h1.mat-display-1 {
margin: 0;
}
/* Slider styling */
.mat-slider-track-background {
background-color: var(--slider-track) !important;
}
.mat-slider-track-fill {
background-color: var(--slider-primary) !important;
}
.mat-slider-thumb {
background-color: var(--slider-thumb) !important;
}
.mat-slider-thumb-label {
background-color: var(--slider-thumb) !important;
}
.userday table :is(td, th) {
border: 1px solid black;
padding: 0.3em;
}
.dark-theme .userday table :is(td, th) {
border-color: #e0e0e0;
}
.dark-theme .userday tr:nth-child(even) {
background-color: #365d36;
}
.userday tr:nth-child(even) {
background-color: #66bb6a;
}
.userday img {
max-height: 100px;
float: left;
margin-right: 10px;
}
.usage-dimensions img {
max-width: 40rem;
}
.compact-tooltip {
transform: translateY(-10px) !important;
}
* {
scrollbar-color: #9F9F9F #2C2C2C;
}
*::-webkit-scrollbar {
width: 8px;
height: 8px;
}
*::-webkit-scrollbar-track {
background: #9F9F9F;
border-radius: 4px;
}
*::-webkit-scrollbar-thumb {
background-color: #888;
border-radius: 4px;
}
*::-webkit-scrollbar-thumb:hover {
background-color: #555;
}