-
Notifications
You must be signed in to change notification settings - Fork 1
/
home_header.css
126 lines (108 loc) · 2.47 KB
/
home_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
d-title {
display:none;
padding-bottom: 0rem;
font-weight: 800;
color: #fff;
background:
/* top, transparent red, faked with gradient */
linear-gradient(
rgba(77,77,77, 0.8) 25%,
rgba(77,77,77, 0.8)
),
/* bottom, image */
url(page_background.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;
}
{
padding-bottom: 0rem !important;
margin-bottom: 0rem !important;
}
d-article iframe {
min-height: calc(100vh - 1rem) !important;
padding-bottom: 0rem !important;
margin-bottom: 0rem !important;
}
.distill-site-footer{
display:none !important;
}
d-appendix {
display:none !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;
}
index.html:38