-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcalc.css
More file actions
63 lines (51 loc) · 1.14 KB
/
calc.css
File metadata and controls
63 lines (51 loc) · 1.14 KB
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
@font-face {
font-family: 'bpdotsunicasebold';
src: url('res/BPdotsUnicaseBold-webfont.eot');
src: url('res/BPdotsUnicaseBold-webfont.eot?#iefix') format('embedded-opentype'),
url('res/BPdotsUnicaseBold-webfont.woff') format('woff'),
url('res/BPdotsUnicaseBold-webfont.ttf') format('truetype'),
url('res/BPdotsUnicaseBold-webfont.svg#bpdotsunicasebold') format('svg');
font-weight: normal;
font-style: normal;
}
@media (min-width: 40em) {
html { padding-left: 1em; padding-right: 1em }
body { padding: 0px }
}
#calcoutput::before {
content: " = "
}
#calcoutput.error::before {
content: " = Error"
}
.gone {
display: none;
}
.example {
font-family: 'bpdotsunicasebold', monospace;
}
#calcinput, #calcoutput {
font-family: 'bpdotsunicasebold', monospace;
font-size: 1.5em;
}
#calcinput {
width: 100%;
}
.error {
color: red;
}
.ket, .bra {
color: #0000b0;
}
.i {
}
.spacer {
border: 0;
padding: 1em;
margin: 1em;
}
hr {
border: 0;
height: 1px;
background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
}