-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyles.css
More file actions
44 lines (40 loc) · 682 Bytes
/
Copy pathstyles.css
File metadata and controls
44 lines (40 loc) · 682 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html,
body {
background-color: #000000;
margin: 0;
padding: 0;
width: 100%;
height: 100%;
overflow: hidden;
position: fixed;
font-family: Arial, sans-serif;
}
body {
display: flex;
justify-content: center;
align-items: center;
}
#c {
background-color: #000000;
border: 2px solid #333;
cursor: default;
transition: cursor 0.1s ease;
touch-action: none;
user-select: none;
-webkit-user-select: none;
-webkit-touch-callout: none;
max-width: 100vw;
max-height: 100vh;
width: auto;
height: auto;
}
@media (max-width: 600px), (max-height: 600px) {
#c {
border: none;
}
}