-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
37 lines (32 loc) · 695 Bytes
/
style.css
File metadata and controls
37 lines (32 loc) · 695 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
:root {
--sans-serif: -apple-system, BlinkMacSystemFont, avenir next, avenir, segoe ui, helvetica neue, helvetica, Cantarell, Ubuntu, roboto, noto, arial, sans-serif;
--monospace: Menlo, Consolas, Monaco, Liberation Mono, Lucida Console, monospace;
}
body {
font-family: var(--sans-serif);
margin: 0;
padding: 0;
}
#editorjs {
margin: 0 1rem;
}
.actions {
background: #000;
padding: 0.5rem;
text-align: center;
margin-bottom: 1rem;
}
label {
display: block;
font-weight: bold;
}
textarea {
display: block;
width: 80vw;
max-width: 40rem;
height: calc(80vh - 10rem);
max-height: 30rem;
margin: 1rem 0;
font-family: var(--monospace);
padding: 0.5rem;
}