forked from KSAplay/Ping_Pong
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
39 lines (36 loc) · 873 Bytes
/
styles.css
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
@font-face {
font-family: 'ArcadeClassic';
font-style: normal;
font-weight: 400;
src: local('ArcadeClassic'), url('./fonts/ArcadeClassic.woff') format('woff');
}
body{
background-color: black;
margin: 0;
width: 100%;
height: 100vh;
display: flex;
place-content: center;
align-items: center;
}
canvas#mesa{
background-color: black;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
outline: none;
-webkit-tap-highlight-color: rgba(255, 255, 255, 0); /* mobile webkit */
}
#fullscreen {
position: absolute;
right: 1em;
top: 1em;
background-color: black;
color: white;
font-size: 1.5em;
font-weight: bolder;
border: 1px solid white;
}