-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
48 lines (48 loc) · 748 Bytes
/
style.css
File metadata and controls
48 lines (48 loc) · 748 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-family: sans-serif;
background: #f4f4f4;
padding: 2rem;
max-width: 1000px;
margin: auto;
}
h1 {
text-align: center;
}
textarea {
width: 100%;
height: 300px;
font-family: monospace;
font-size: 14px;
padding: 1rem;
box-sizing: border-box;
}
.options {
margin: 1rem 0;
text-align: center;
}
.output {
margin-top: 1rem;
position: relative;
}
pre {
background: #eaeaea;
padding: 1rem;
white-space: pre-wrap;
border: 1px solid #ccc;
font-family: monospace;
font-size: 14px;
user-select: text;
cursor: text;
min-height: 150px;
}
button {
padding: 0.5rem 1.5rem;
font-size: 1rem;
cursor: pointer;
margin: 0.5rem;
}
.copy-button {
position: absolute;
top: 0.5rem;
right: 0.5rem;
}