-
Notifications
You must be signed in to change notification settings - Fork 0
/
theme.css
100 lines (84 loc) · 1.85 KB
/
theme.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
/* Remove arrows in input field */
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
/* Firefox */
input[type="number"] {
-moz-appearance: textfield;
}
body {
transition: color 0.15s;
}
button {
color: black;
background: #f8f9fa;
border-color: black;
}
input {
color: black;
background-color: #f8f9fa;
border-width: 1px;
border-color: #eee;
}
[data-theme="dark"] {
color: white;
background-color: #222;
}
[data-theme="dark"] button {
color: white;
background-color: #2b2b2b;
border-color: #242424;
}
[data-theme="dark"] button:hover {
color: white;
background-color: #242424;
}
[data-theme="dark"] input {
color: white;
background-color: #2b2b2b;
border-color: #242424;
}
[data-theme="dark"] .svg-icon {
filter: brightness(0) invert(1);
}
/*html{*/
/* font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";*/
/* font-weight: 400;*/
/* line-height: 1.5;*/
/* font-size: 16px;*/
/*}*/
/*body{*/
/* height: 100%;*/
/* text-align: center;*/
/* margin: 0;*/
/* color: #212529;*/
/* background: #fff;*/
/*}*/
/*.h1 h1{*/
/* font-size: 3rem;*/
/*}*/
/*.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {*/
/* margin-top: 0;*/
/* margin-bottom: .5rem;*/
/* font-weight: 500;*/
/* line-height: 1.2;*/
/*}*/
/*button, input, optgroup, select, textarea {*/
/* margin: 0;*/
/* font-family: inherit;*/
/* font-size: inherit;*/
/* line-height: inherit;*/
/*}*/
/*button {*/
/* padding: 1px 6px;*/
/*}*/
/*p {*/
/* display: block;*/
/* margin-block-start: 1em;*/
/* margin-block-end: 1em;*/
/* margin-inline-start: 0;*/
/* margin-inline-end: 0;*/
/*}*/