blob: 94729c2d308a1d38927b78d87a6f2cfe9baf4f18 (
plain) (
blame)
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
|
body {
background: black;
color: white;
font-family: monospace;
}
#braille {
line-height: .92;
border: 1px solid white;
}
.bigguy {
display: flex;
}
.lambda {
font-family: Andale Mono, monospace;
font-size: 12px;
display: inline-block;
}
.linkbox {
display: flex;
align-items: center;
justify-content: center;
flex: 1;
}
.links {
font-size: 16px;
display: inline-block;
position: absolute;
background: black;
padding: 3px;
border: 1px solid white;
}
.links > span {
color: white;
}
.links a {
color: lightgrey;
}
.links a:visited {
color: grey;
}
@media only screen and (max-width: 440px) {
.bigguy {
display: block;
}
}
|