-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.css
50 lines (43 loc) · 912 Bytes
/
index.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
html, body {
margin: 0;
padding: 0;
height: 100%;
text-rendering: optimizeLegibility;
}
#paste {
display: flex;
height: 100vh;
width: 100vw;
}
#instructions, #error {
width: 100vw;
display: block;
text-align: center;
align-self: center;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
font-weight: 600;
}
.privacy {
display: flex;
width: 100vw;
height: 100vh;
align-items: center;
justify-content: center;
flex-direction: column;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
font-weight: 600;
font-size: 20px;
}
a:link.muted, a:visited.muted, span.muted {
color: #aaa;
font-size: 14px;
}
span.ideas {
font-size: 14px;
}
#error {
display: none;
}
#json {
margin: 5px;
}