-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
129 lines (107 loc) · 2.05 KB
/
styles.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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
@import url("//fonts.googleapis.com/css?family=Lobster|Cabin:400,700");
/* Frutiger Light approximate */
@import url("//fonts.googleapis.com/css?family=Hind&display=swap");
/* DIN condensed approximate */
@import url("//fonts.googleapis.com/css?family=Roboto+Condensed&display=swap");
/* Fira Mono */
@import url("//fonts.googleapis.com/css?family=Karla:400,700|Fira+Mono&display=fallback");
/* header styles */
h1 {
font-family: 'Hind';
color: #958984;
}
h2 {
font-family: 'Hind';
color: #958984;
}
h3 {
font-family: 'Hind';
color: #958984;
}
h4 {
font-family: 'Hind';
color: #958984;
font-style: italic;
}
h5 {
font-family: 'Hind';
color: #958984;
font-style: italic;
}
/* top navbar styles */
.navbar {
background-color:#00806E;
border-color: black;
font-family: 'Hind'; /* main tab fonts */
}
.navbar-brand { /* dashboard title */
font-family: 'Roboto Condensed';
font-weight: bold;
color: #FF0000;
}
.navbar-nav li a:hover, .navbar-nav > .active > a {
color: #fff !important;
background-color:#5c4a42!important;
background-image: none !important;
}
/* sidebar */
.sidebar {
font-family: 'Hind';
color: #958984;
}
.section.sidebar {
background-color: #95898430; /* gray with alpha */
}
/* sub sections */
.level3 {
font-family: 'Hind';
color: #958984;
}
.chart-title {
font-family: 'Hind';
font-style: italic;
color: #958984;
}
.nav-tabs {
font-family: 'Hind';
font-style: italic;
color: #958984;
}
/* shiny slider stuff */
.irs-bar {
background: #00806E
}
.irs-bar {
border-top: 1px #00806E
}
.irs-bar-edge {
background: #00806E
}
.irs-bar-edge {
border: 1px #00806E
}
.irs-single {
background: #00806E;
}
/* tabset top border */
.nav-tabs-custom > .nav-tabs > li.active {
border-top-color: #00806E;
}
/* bar chart formatting for reactable */
.bar-cell {
display: flex;
align-items: center;
}
.number {
font-family: "Fira Mono", Consolas, Monaco, monospace;
font-size: 13.5px;
white-space: pre;
}
.bar-chart {
flex-grow: 1;
margin-left: 6px;
height: 14px;
}
.bar {
height: 100%;
}