-
Notifications
You must be signed in to change notification settings - Fork 0
/
viz.css
100 lines (93 loc) · 1.95 KB
/
viz.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
@import url('https://fonts.googleapis.com/css?family=Merriweather:900|Noto+Sans:400');
html {
/* font-size: 87.5%; */
}
body {
font-family: 'Noto Sans', sans-serif;
font-weight: 400;
color: #37474f;
background: #fafafa;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
/* #section1 {
background: #fafafa;
} */
/*#cover {
background: #fafafa;
position: absolute;
}*/
.fullscreen-bg {
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
overflow: hidden;
z-index: -100;
}
.fullscreen-bg_video {
position: absolute;
top: 0;
left: 0;
width: 100%;
/*height: 100%;*/
}
._pattern-overlay {
position: absolute;
top: 0;
width: 100%;
opacity: 0.8;
bottom: 0;
background: linear-gradient(to bottom right, #780206, #061161);
/*background-image: url(assets/45-degree-fabric-dark.png);*/
z-index: 1;
}
#title-row {
height: 95vh;
}
#title {
font-family: 'Merriweather', serif;
font-weight: 900;
color: #f8f8fa;
}
.btn-outline-secondary:focus, .btn-outline-secondary.focus, .btn-outline-secondary:active, .btn-outline-secondary.active {
color: #fff;
background-color: #607d8b;
border-color: #607d8b;
box-shadow: none;
}
.btn-outline-secondary:not([disabled]):not(.disabled):active, .btn-outline-secondary:not([disabled]):not(.disabled).active,
.show > .btn-outline-secondary.dropdown-toggle {
color: #fff;
background-color: #607d8b;
border-color: #607d8b;
/* box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); */
box-shadow: none;
}
.lead, #subtitle {
color: #607d8b;
}
.alert-light {
color: #37474f;
background-color: #ffffff;
border-color: #fefefe;
}
#maxline {
color: #fdbb2d;
}
#minline {
color: #22c1c3;
}
/* SVG Element styles */
svg {
shape-rendering: auto;
}
svg .maxChart {
stroke: #fdbb2d;
stroke-width: 2px;
}
svg .minChart {
stroke: #22c1c3;
stroke-width: 2px;
}