-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
98 lines (91 loc) · 1.62 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
96
97
98
.hidden {
display: none;
}
body {
background-color: white;
font-family: "Segoe UI";
font-size: 12px;
}
.fallbackUI #pagesRoot {
border: 1px dashed red;
width: 768px;
height: 1024px;
margin-left: auto;
margin-right: auto;
}
.page {
width: 100%;
height: 100%;
}
.inputGrid {
display: grid;
grid-template-columns: repeat(4, 64px);
grid-auto-rows: 64px;
width: fit-content;
margin-left: auto;
margin-right: auto;
margin-top: 1ch;
margin-bottom: 1ch;
border: 1px solid black;
button {
font-family: "Segoe UI";
font-size: 12px;
}
}
.opEquals {
grid-row: span 2;
}
.num0 {
grid-column: span 2;
}
.bufferContainer {
grid-column: span 4;
vertical-align: bottom;
font-size: 24px;
background-color: #cccccc;
display: flex;
flex-direction: column;
padding: 0.5ch;
}
.buffer, .staging {
margin-top: auto;
text-align: right;
width: 100%;
}
.staging {
color: #555;
font-weight: lighter;
font-size: 60%;
}
.history {
display: grid;
grid-template-columns: 1fr auto auto auto;
font-size: 150%;
.historyOperand.lhs {
text-align: right;
}
.historyResult, .historyOperand.rhs {
text-align: left;
}
.historyOp, .historyOperand.rhs {
margin-left: 1ch;
}
.historyResult {
margin-left: 2ch;
color: #777;
font-style: italic;
}
.historyResult:before {
content: "= ";
}
}
.historyValue:hover {
text-decoration: underline;
}
.mono {
font-family: "Cascadia Mono", "Consolas", "Courier New";
}
/* See https://learn.microsoft.com/en-us/windows/apps/design/style/segoe-ui-symbol-font */
.glyph {
font-family: "Segoe MDL2 Assets" !important;
}