forked from microsoft/devicescript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcustom.css
More file actions
92 lines (83 loc) · 2.02 KB
/
Copy pathcustom.css
File metadata and controls
92 lines (83 loc) · 2.02 KB
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
/**
* Any CSS included here will be global. The classic template
* bundles Infima by default. Infima is a CSS framework designed to
* work well for content-centric websites.
*/
/* You can override the default Infima variables here. */
:root {
--ifm-color-primary: #005d8f;
--ifm-color-primary-dark: #005481;
--ifm-color-primary-darker: #004f7a;
--ifm-color-primary-darkest: #004164;
--ifm-color-primary-light: #00669d;
--ifm-color-primary-lighter: #006ba4;
--ifm-color-primary-lightest: #0079ba;
}
/* For readability concerns, you should choose a lighter palette in dark mode. */
[data-theme='dark'] {
--ifm-color-primary: #2eb6ff;
--ifm-color-primary-dark: #10abff;
--ifm-color-primary-darker: #01a6ff;
--ifm-color-primary-darkest: #0089d3;
--ifm-color-primary-light: #4cc1ff;
--ifm-color-primary-lighter: #5bc6ff;
--ifm-color-primary-lightest: #88d6ff;
}
/* code styling */
:root {
--ifm-code-font-size: 95%;
--docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.1);
}
[data-theme='dark'] {
--docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.3);
}
/** react split pane **/
.Resizer {
background: #000;
opacity: 0.2;
z-index: 1000;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
-moz-background-clip: padding;
-webkit-background-clip: padding;
background-clip: padding-box;
}
.Resizer:hover {
-webkit-transition: all 2s ease;
transition: all 2s ease;
}
.Resizer.vertical {
width: 17px;
margin: 0 -8px;
border-left: 8px solid rgba(255, 255, 255, 0);
border-right: 8px solid rgba(255, 255, 255, 0);
cursor: col-resize;
}
.Resizer.vertical:hover {
border-left: 8px solid rgba(0, 0, 0, 0.5);
border-right: 8px solid rgba(0, 0, 0, 0.5);
}
.Resizer.disabled {
cursor: not-allowed;
}
.Resizer.disabled:hover {
border-color: transparent;
}
.pane {
position: absolute;
overflow-y: auto;
border: 0;
width: 100%;
top: 0;
height: 100%;
}
.pane.left {
left: 0px;
}
.pane.right {
right: 0px;
}
div.navbar__logo {
margin-right: 1.5rem;
}