-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
79 lines (66 loc) · 996 Bytes
/
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
68
69
70
71
72
73
74
75
76
77
78
79
:root {
font-size: 16px;
}
body {
margin: 0;
font-family: monospace;
background: #eee;
color: #111;
}
header {
width: 100vw;
text-align: center;
}
.app {
margin: 0 auto;
width: 90vw;
display: flex;
flex-flow: row nowrap;
align-items: flex-start;
justify-content: center;
}
.user-input {
background: #111;
color: #eee;
padding: 1rem 2rem 2rem;
margin-top: 1rem;
min-width: 20vw;
}
.output {
margin: 2rem;
flex-grow: 1;
text-align: center;
}
h2 {
text-align: center;
}
.input__row {
display: flex;
flex-flow: row wrap;
justify-content: flex-start;
align-items: flex-start;
margin-bottom: 1rem;
}
.input__unit {
font-size: .6em;
}
.input__row input {
margin-left: 0.5rem;
}
#text-input {
flex-grow: 1;
}
.text-area, .svg-area {
margin-bottom: 2rem;
}
h3 {
text-align: left;
}
.text-target {
display: block;
font-size: 0.8rem;
box-sizing: border-box;
padding: 1rem;
border: 1px solid black;
text-align: left;
}