-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathNibbles.css
More file actions
48 lines (42 loc) · 866 Bytes
/
Nibbles.css
File metadata and controls
48 lines (42 loc) · 866 Bytes
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
body {
font-family: "DejaVu Sans Mono","SFMono-Regular",Consolas,"Liberation Mono",Menlo,Courier,monospace;
/*font-family: Andale Mono, monospace;line-height:normal;*/
/*font-family: Courier New, monospace;line-height:normal;*/
/*font-family: Lucida Console, monospace;line-height:0.999em;*/
white-space: pre;
/*letter-spacing: -0.008em;*/
display: inline-flex;
line-height: 0.6;
}
.background {
z-index: 0;
background-color: black;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
display: block
}
.board {
z-index: 1;
transform: translate(50%, 25%);
}
.textCell {
/*line-height: 0;*/
}
.overlay1 {
z-index: 2;
transform: scale(1, 0.5) translate(50%,-26%);
position: absolute;
opacity: 0.75;
}
.overlay2 {
z-index: 3;
opacity: 0;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
}