forked from hfgcoding/01_03_spacebase
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
39 lines (35 loc) · 651 Bytes
/
Copy pathstyle.css
File metadata and controls
39 lines (35 loc) · 651 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
pre {
position: absolute;
left: 50%;
top: 50%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
border: 1px solid gray;
}
body {
color: white;
background-color: black;
}
.scoreboard {
font-family: 'Righteous', cursive;
background-color: white;
color: black;
font-size: 50px;
text-align: center;
border: 1px solid white;
position: absolute;
top: 5vh;
right: 1.5vh;
width: 15ch;
}
.spaceinvaders {
font-family: 'Righteous', cursive;
background-color: black;
color: white;
font-size: 50px;
text-align: center;
position: absolute;
top: 5vh;
right: 58vw;
width: 15ch;
}