-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
45 lines (39 loc) · 710 Bytes
/
Copy pathstyle.css
File metadata and controls
45 lines (39 loc) · 710 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html, body {
width: 100%;
height: 100%;
overflow: hidden;
background: #050510;
font-family: 'Courier New', Courier, monospace;
}
body {
display: flex;
justify-content: center;
align-items: center;
}
.container {
text-align: center;
}
.gamewrap {
position: relative;
display: inline-block;
}
canvas {
display: block;
border: 1px solid rgba(233, 69, 96, 0.3);
border-radius: 4px;
box-shadow:
0 0 40px rgba(108, 99, 255, 0.15),
0 0 80px rgba(233, 69, 96, 0.05),
inset 0 0 40px rgba(0, 0, 0, 0.5);
}
.info {
color: rgba(255, 255, 255, 0.3);
font-size: 12px;
margin-top: 14px;
letter-spacing: 2px;
}