forked from devsecopsmaturitymodel/DevSecOps-MaturityModel
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
65 lines (51 loc) · 1.21 KB
/
styles.css
File metadata and controls
65 lines (51 loc) · 1.21 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
/* 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; }
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;
}