Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
polakowo
GitHub Repository: polakowo/vectorbt
Path: blob/master/apps/candlestick-patterns/assets/style.css
1073 views
1
:root {
2
--bgcolor: #272a32;
3
--dark_bgcolor: #1d2026;
4
--fontcolor: #9fa6b7;
5
--dark_fontcolor: #7b7d8d;
6
--gridcolor: #323b56;
7
--loadcolor: #387c9e;
8
--active_color: #88ccee;
9
}
10
11
.container.scalable {
12
width: 100%;
13
max-width: none;
14
}
15
16
/* Remove Undo
17
–––––––––––––––––––––––––––––––––––––––––––––––––– */
18
._dash-undo-redo {
19
display: none;
20
}
21
22
body {
23
background-color: var(--dark_bgcolor);
24
color: var(--fontcolor);
25
overflow-x: hidden;
26
padding: 15px 30px;
27
margin: 0px;
28
}
29
30
button, .button {
31
background-color: var(--dark_bgcolor) !important;
32
color: var(--dark_fontcolor) !important;
33
border: 1px solid dimgrey !important;
34
}
35
36
button:hover, .button:hover {
37
color: var(--active_color) !important;
38
border: 1px solid var(--active_color) !important;
39
}
40
41
.banner {
42
height: 5rem;
43
margin-bottom: 1rem;
44
display: flex;
45
flex-direction: row nowrap;
46
align-items: center;
47
justify-content: space-between;
48
}
49
50
.banner h6 {
51
font-family: 'Open Sans', sans-serif;
52
font-size: 2rem;
53
font-weight: 600;
54
line-height: 1;
55
text-transform: uppercase;
56
}
57
58
.control-row {
59
display: flex;
60
flex-direction: row;
61
justify-content: space-between;
62
margin-bottom: 10px;
63
}
64
65
.half-width {
66
width: 45%;
67
}
68
69
.full-width {
70
width: 100%;
71
}
72
73
*.Select-control,
74
Select--single,
75
.Select-multi-value-wrapper,
76
.Select-value,
77
.Select-value-label,
78
.Select-placeholder,
79
.Select-multi-value-wrapper,
80
.Select-input input,
81
.input-control {
82
background-color: var(--dark_bgcolor) !important;
83
color: var(--dark_fontcolor) !important;
84
}
85
86
.Select-control,
87
.input-control {
88
border: 1px solid dimgrey !important;
89
}
90
91
.Select.is-focused .Select-input input {
92
color: var(--active_color) !important;
93
}
94
95
.Select.is-focused .Select-value .Select-value-label {
96
color: var(--active_color) !important;
97
}
98
99
.Select-menu-outer,
100
.Select.is-focused .Select-control,
101
.input-control:focus {
102
color: var(--active_color) !important;
103
border: 1px solid var(--active_color) !important;
104
}
105
106
.input-control {
107
width: 100%;
108
height: 36px;
109
}
110
111
span.Select-clear-zone {
112
display: none !important;
113
}
114
115
.Select-menu-outer,
116
.Select-menu-outer div,
117
.Select--multi {
118
background-color: var(--dark_bgcolor) !important;
119
color: var(--dark_fontcolor) !important;
120
}
121
122
.Select-menu-outer div:hover {
123
color: var(--active_color) !important;
124
cursor: pointer;
125
}
126
127
label, small {
128
color: var(--dark_fontcolor);
129
}
130
131
.control-outer {
132
display: inline-block;
133
}
134
135
.section-title {
136
font-size: 16px;
137
font-weight: bold;
138
display: block;
139
margin-top: 20px;
140
margin-bottom: 5px;
141
cursor: pointer;
142
}
143
.section-title:focus {
144
outline: none;
145
}
146
147
.app__left__section {
148
min-height: 100vh;
149
max-height: 100vh;
150
}
151
152
.app__right__section {
153
min-height: 100vh;
154
max-height: 100vh;
155
}
156
157
.pretty-container {
158
margin: 15px 0px;
159
padding: 25px;
160
background-color: var(--bgcolor);
161
border-radius: 5px;
162
box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
163
}
164
165
#yfinance_checklist {
166
color: var(--dark_fontcolor);
167
}
168
169
.rc-slider {
170
margin-top: 10px;
171
}
172
173
.rc-slider-rail {
174
background-color: var(--dark_bgcolor) !important
175
}
176
177
.rc-slider-track {
178
background-color: var(--loadcolor) !important
179
}
180
181
.rc-slider-dot-active, .rc-slider-handle {
182
border-color: var(--active_color) !important;
183
background-color: var(--active_color);
184
}
185
186
.rc-slider-handle {
187
border: none !important;
188
}
189
190
.column-1 {
191
padding-right: 15px !important;
192
}
193
194
.dash-cell.column-2 .input-active,
195
.dash-cell.column-3 .input-active {
196
color: var(--active_color) !important;
197
}
198
199
.dash-spreadsheet-inner .row {
200
margin: 0px;
201
}
202
203
204