-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
95 lines (82 loc) · 1.31 KB
/
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
.input
{
font-family: 'Fira Code', monospace !important;
}
.title
{
text-align: center;
}
.container
{
margin-top: 1em;
max-width: 92%;
}
.table-length-input
{
display: inline-block;
width: 100%;
max-width: 10em;
}
.table
{
font-family: 'Fira Code', monospace !important;
table-layout: fixed;
margin-top: 1em;
font-size: 0.75em;
}
tr > th:first-child {
text-align: right !important;
}
tr > th:not(:first-child) {
text-align: center !important;
padding-left: 0 !important;
padding-right: 0 !important;
}
td
{
text-align: center !important;
}
ol[is=hex-input-list]
{
display: inline-block;
margin-bottom: 1em;
}
ol[is=hex-input-list] > li
{
display: inline;
}
ol[is=hex-input-list] .input
{
display: inline-block;
padding: 0;
margin: 0;
text-align: center;
font-size: 2em;
width: 1em;
height: 1em;
caret-color: transparent;
}
ol[is=hex-input-list] .input.is-static
{
width: 1.5em;
}
ol[is=hex-input-list] .input:not(.is-static):focus
{
background-color: #00d1b2;
}
.binary-rep
{
position: absolute;
font-family: 'Fira Code', monospace !important;
}
.binary-rep > span
{
display: inline-block;
text-align: center;
width: 0.5rem;
font-size: 0.75em;
}
.footer
{
background-color: unset;
}