-
Notifications
You must be signed in to change notification settings - Fork 177
/
shared.css
85 lines (72 loc) · 756 Bytes
/
shared.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
80
81
82
83
84
85
*,
*:before,
*:after
{
box-sizing: border-box;
hyphens: auto;
overflow-wrap: break-word;
}
html
{
font-size: 20px;
}
body
{
max-width: 500px;
margin: 2em auto;
padding: 0 0.5em;
}
h1
{
text-align: center;
}
button,
input,
select,
textarea
{
font-size: inherit;
}
.button
{
padding: 0.5em;
margin: 1em 0;
}
.button + .button
{
margin-left: 1em;
}
.api-support
{
display: block;
}
.hidden,
[hidden]
{
display: none;
}
.field-wrapper
{
margin-top: 1em;
}
.buttons-wrapper
{
text-align: center;
}
.value
{
font-weight: bold;
}
.author
{
display: block;
margin-top: 1em;
}
.log
{
border: 1px solid #333333;
height: 200px;
line-height: 1.3em;
overflow-y: scroll;
width: 100%;
}