|
1 | 1 | html, body { |
2 | | - position: relative; |
3 | | - width: 100%; |
4 | | - height: 100%; |
| 2 | + position: relative; |
| 3 | + width: 100%; |
| 4 | + height: 100%; |
5 | 5 | } |
6 | 6 |
|
7 | | -body { |
8 | | - color: #333; |
9 | | - margin: 0; |
10 | | - padding: 8px; |
11 | | - box-sizing: border-box; |
12 | | - font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; |
13 | | -} |
14 | | - |
15 | | -a { |
16 | | - color: rgb(0,100,200); |
17 | | - text-decoration: none; |
18 | | -} |
19 | | - |
20 | | -a:hover { |
21 | | - text-decoration: underline; |
22 | | -} |
23 | | - |
24 | | -a:visited { |
25 | | - color: rgb(0,80,160); |
26 | | -} |
27 | | - |
28 | | -label { |
29 | | - display: block; |
30 | | -} |
31 | | - |
32 | | -input, button, select, textarea { |
33 | | - font-family: inherit; |
34 | | - font-size: inherit; |
35 | | - -webkit-padding: 0.4em 0; |
36 | | - padding: 0.4em; |
37 | | - margin: 0 0 0.5em 0; |
38 | | - box-sizing: border-box; |
39 | | - border: 1px solid #ccc; |
40 | | - border-radius: 2px; |
41 | | -} |
42 | | - |
43 | | -input:disabled { |
44 | | - color: #ccc; |
| 7 | +body, div { |
| 8 | + transition: background-color 0.5s; |
45 | 9 | } |
46 | 10 |
|
47 | 11 | button { |
48 | | - color: #333; |
49 | | - background-color: #f4f4f4; |
50 | | - outline: none; |
| 12 | + outline: none; |
51 | 13 | } |
52 | 14 |
|
53 | | -button:disabled { |
54 | | - color: #999; |
55 | | -} |
56 | | - |
57 | | -button:not(:disabled):active { |
58 | | - background-color: #ddd; |
| 15 | +body { |
| 16 | + margin: 0; |
| 17 | + padding: 8px; |
| 18 | + box-sizing: border-box; |
59 | 19 | } |
60 | 20 |
|
61 | | -button:focus { |
62 | | - border-color: #666; |
| 21 | +input, button, select, textarea { |
| 22 | + font-family: inherit; |
| 23 | + font-size: inherit; |
| 24 | + -webkit-padding: 0.4em 0; |
| 25 | + padding: 0.4em; |
| 26 | + margin: 0 0 0.5em 0; |
| 27 | + box-sizing: border-box; |
| 28 | + border: 1px solid; |
| 29 | + border-radius: 2px; |
| 30 | +} |
| 31 | + |
| 32 | +.highcharts-background { |
| 33 | + transition: all 0.5s; |
| 34 | +} |
| 35 | + |
| 36 | +#container { |
| 37 | + width:70%; |
| 38 | + min-width: 310px; |
| 39 | +} |
| 40 | + |
| 41 | +.highcharts-dark { |
| 42 | + /* UI colors */ |
| 43 | + --highcharts-background-color: #212529; |
| 44 | + |
| 45 | + /* Neutral color variations */ |
| 46 | + --highcharts-neutral-color-100: rgb(255, 255, 255); |
| 47 | + --highcharts-neutral-color-80: rgb(214, 214, 214); |
| 48 | + --highcharts-neutral-color-60: rgb(173, 173, 173); |
| 49 | + --highcharts-neutral-color-40: rgb(133, 133, 133); |
| 50 | + --highcharts-neutral-color-20: rgb(92, 92, 92); |
| 51 | + --highcharts-neutral-color-10: rgb(71, 71, 71); |
| 52 | + --highcharts-neutral-color-5: rgb(61, 61, 61); |
| 53 | + --highcharts-neutral-color-3: rgb(57, 57, 57); |
| 54 | + |
| 55 | + /* Highlight color variations */ |
| 56 | + --highcharts-highlight-color-100: rgb(122, 167, 255); |
| 57 | + --highcharts-highlight-color-80: rgb(108, 144, 214); |
| 58 | + --highcharts-highlight-color-60: rgb(94, 121, 173); |
| 59 | + --highcharts-highlight-color-20: rgb(65, 74, 92); |
| 60 | + --highcharts-highlight-color-10: rgb(58, 63, 71); |
63 | 61 | } |
0 commit comments