blob: 30537f612a5734e437d274c5952907e08e255aa1 (
plain)
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
86
87
88
89
90
91
|
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
html {
font: message-box;
font-size: 0.9em;
font-weight: normal;
margin: 0;
height: 100%;
color: #737980;
background-color: #ededed;
}
body {
margin: 0;
padding: 20px;
background-image: linear-gradient(#fff, #ededed 100px);
}
.text-input {
display: flex;
}
.text-input input {
flex: 0.5;
margin-left: 5px;
}
h1 {
font-size: 2em;
font-weight: lighter;
line-height: 1.2;
margin: 0;
margin-bottom: .5em;
}
#controls {
float: right;
position: relative;
top: -10px;
right: -10px;
}
#controls > a {
color: #4C9ED9;
font-size: small;
cursor: pointer;
border-bottom: 1px dotted;
margin-left: 10px;
}
table {
font-family: monospace;
border-collapse: collapse;
}
th, td {
padding: 5px;
border: 1px solid #eee;
}
th {
min-width: 100px;
}
th:first-of-type, td:first-of-type {
text-align: left;
}
li {
list-style: none;
padding: 2px;
}
li > label:hover {
background-color: rgba(0,0,0,0.02);
}
li > label > span {
display: inline-block;
}
input, select {
box-sizing: border-box;
}
select {
padding-top: 2px;
padding-bottom: 2px;
}
|