-
Notifications
You must be signed in to change notification settings - Fork 1
/
pace_header.css
150 lines (131 loc) · 3.07 KB
/
pace_header.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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
d-title {
padding-top: 8rem;
font-weight: 800;
color: #fff;
background:
/* top, transparent red, faked with gradient */
linear-gradient(
rgba(77,77,77, 0.8),
rgba(77,77,77, 0.8)
),
/* bottom, image */
url(cdc-ZhrdTmBQafQ-unsplash.jpg) no-repeat center center fixed;
-webkit-background-size: cover !important;
-moz-background-size: cover !important;
-o-background-size: cover !important;
background-size:cover !important;
}
.cdc {
font-family: 'Libre Franklin', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
}
.highcharts-container {
font-family: 'Libre Franklin', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
}
.highcharts-container text {
font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
#chartContainter {
min-width: 0;
overflow: hidden;
}
details {
background-color: hsla(206, 95%, 20%, 0.2);
cursor: pointer;
color: #2d2d2d;
margin-bottom:1vh;
padding: 1em;
border: none;
text-align: left;
outline: none;
}
.active, details:hover {
transition: max-height 0.2s ease-out;
/* background-color: #acc2c2; */
}
details {
display: flex;
justify-content: space-between;
align-content: center;
border-radius: 4px;
}
details.active {
border-bottom-left-radius: 0;
border-bottom-right-radius: 0;
}
summary::-webkit-details-marker {
display: none
}
summary::after {
float: right;
font-family: "Font Awesome 5 Free";
content: "\f0fe";
}
details[open] summary::after {
float: right;
font-family: "Font Awesome 5 Free";
content: "\f146";
}
details h4 {
margin: 0;
line-height: inherit;
}
d-article h4 {
font-weight: 700 !important;
text-transform: initial;
color: #5da5da;
font-size: 16px;
line-height: 1.4em;
}
.dt-tags .dt-tag {
text-decoration: none;
display: inline-block;
color: #ffffff;
padding: 0em 0.4em;
margin-right: 0.5em;
margin-bottom: 0.4em;
font-size: 70%;
border: 1px solid rgba(255,255,255,0.5);
border-radius: 3px;
text-transform: uppercase;
font-weight: 500;
}
.btn-outline-light:not(:disabled):not(.disabled):active, .show>.btn-outline-light.dropdown-toggle {
color: #212529;
background-color: #f8f9fa;
border-color: #f8f9fa;
}
.btn-outline-light {
color: #f8f9fa;
border-color: #f8f9fa;
}
.btn-outline-light:hover {
color: #212529;
background-color: #f8f9fa;
border-color: #f8f9fa;
}
.btn {
display: inline-block;
font-weight: 400;
color: #fff;
text-align: center;
vertical-align: middle;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
background-color: transparent;
border: 1px solid #fff;
padding: .375rem .75rem;
font-size: 1rem;
line-height: 1.5;
border-radius: .25rem;
transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.go-to-nav {
display: table-cell !important;
vertical-align: bottom !important;
padding: .375rem .25rem;
}
.mb-2, .my-2 {
margin-bottom: .5rem!important;
}