-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathstyle.css
More file actions
48 lines (40 loc) · 655 Bytes
/
style.css
File metadata and controls
48 lines (40 loc) · 655 Bytes
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
body {
font: 120%/1.5 system-ui, Helvetica Neue, Helvetica, Segoe UI, sans-serif;
width: 900px;
max-width: 90vw;
margin: 1em auto;
padding: 0 2em;
background: var(--color);
}
input {
font: inherit;
font-size: 200%;
width: 100%;
padding: 0 .3em;
box-sizing: border-box;
border: 3px solid silver;
box-shadow: 0 0 0 .1em white;
}
input:invalid {
background-color: #fdd;
}
input.oog {
border-color: #d00;
}
input:focus {
outline: none;
}
.keyword-color {
padding-left: 1em;
background: var(--color);
padding: .5em;
}
.dark-color {
color: white;
}
.light-color {
color: black;
}
code {
font-family: Consolas, Monaco, monospace;
}