-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.css
77 lines (77 loc) · 1.36 KB
/
main.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
p {
font-family: 'Open Sans', sans-serif;
}
#special-chars {
display: flex;
flex-wrap: wrap;
}
#special-chars > button {
font-size: 16pt;
width: 25pt;
height: 25pt;
text-align: center;
font-family: 'Courier Prime', monospace;
background-color: #004427;
color: #C0D6CD;
border-color: #509C7B;
}
#controls {
width: 64pt;
display: flex;
flex-direction: column;
height: 100%;
right: -10px;
position: relative;
}
#controls > span {
height: 50%;
}
#controls > span > button {
background-color: #1A714C;
border: 1pt solid #509C7B;
width: 100%;
height: 100%;
padding-top: 6pt;
position: relative;
padding-bottom: 6pt;
font-size: 32pt;
font-family: 'Courier Prime', monospace;
}
.inputTD {
width: 100%
}
.inputButton {
width: 25pt;
height: 25pt;
padding-top: 2pt;
font-size: 16pt;
font-family: 'Courier Prime', monospace;
font-weight: bold;
background-color: #C0D6CD;
color: #004427;
border: 1pt solid #509C7B;
border-radius: 5pt;
}
label {
font-family: 'Open Sans', sans-serif;
font-size: 18pt;
}
input[type=text] {
font-family: 'Courier Prime', monospace;
font-size: 20pt;
width: calc(100% - 4.4px - 4pt);
background-color: #509C7B;
border: 1pt solid #00110A;
border-radius: 5pt;
color: #00110A;
height: 26pt;
padding-top: 3pt;
padding-left: 2pt;
padding-right: 2pt;
}
::selection {
background: #C0D6CD
}
::-moz-selection {
background: #C0D6CD
}