-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
67 lines (62 loc) · 1.49 KB
/
style.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
/* Light-blue Light scheme (Default) */
/* Can be forced with data-theme="light" */
[data-theme="light"],
:root:not([data-theme="dark"]) {
--primary: #039be5;
--primary-hover: #0288d1;
--primary-focus: rgba(3, 155, 229, 0.125);
--primary-inverse: #FFF;
}
/* Light-blue Dark scheme (Auto) */
/* Automatically enabled if user has Dark mode enabled */
@media only screen and (prefers-color-scheme: dark) {
:root:not([data-theme]) {
--primary: #039be5;
--primary-hover: #03a9f4;
--primary-focus: rgba(3, 155, 229, 0.25);
--primary-inverse: #FFF;
}
}
/* Light-blue Dark scheme (Forced) */
/* Enabled if forced with data-theme="dark" */
[data-theme="dark"] {
--primary: #039be5;
--primary-hover: #03a9f4;
--primary-focus: rgba(3, 155, 229, 0.25);
--primary-inverse: #FFF;
}
/* Light-blue (Common styles) */
:root {
--form-element-active-border-color: var(--primary);
--form-element-focus-color: var(--primary-focus);
--switch-color: var(--primary-inverse);
--switch-checked-background-color: var(--primary);
}
* {
transition: all 100ms ease;
}
strong {
font-size: 20px;
}
:root {
--block-spacing-vertical: 0;
}
textarea {
padding: 0.5rem;
font-family: 'Courier New', Courier, monospace;
}
code {
width: 100%;
background: var(--code-background-color)!important;
font-family: 'Courier New', Courier, monospace;
}
.output-div {
display: none;
}
button {
padding: 0.5rem!important;
}
select {
padding-top: 0.5rem!important;
padding-bottom: 0.5rem!important;
}