-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
85 lines (70 loc) · 1.1 KB
/
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
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
body {
background: #bcdaf8;
color: #162633;
margin: 10px;
}
body > * {
width: 100%;
max-width: 720px;
margin: 10px auto;
text-align: center;
}
h1 {
font-size: 22pt;
}
button#button {
background: #79b5e7;
padding: 5px;
border-color: #446987;
border-radius: 10px;
font-size: 14pt;
}
#container {
min-height: 360px;
background: #79b5e7;
}
canvas#canvas {
display: block;
margin: 0px auto;
}
table#results {
table-layout: fixed;
}
tr.large th, tr.large td {
font-size: 18pt;
}
tr.medium th, tr.medium td {
font-size: 14pt;
}
tr.small th, tr.small td {
font-size: 10pt;
}
th {
width: 120px;
text-align: left;
}
td {
text-align: left;
}
td > pre {
display: block;
white-space: pre-wrap;
word-break: break-all;
hyphens: none;
margin: 0px;
padding: 5px;
background: #79b5e7;
}
tr.medium td > pre {
font-size: 10pt;
}
tr.small td > pre {
font-size: 8pt;
}
span.pin {
display: inline-block;
margin-right: 10px;
padding: 5px;
background: #79b5e7;
font-size: 18pt;
}