K00B404 commited on
Commit
9894f18
·
verified ·
1 Parent(s): b87171e

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +39 -0
app.py ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ body, html, #app {
2
+ margin: 0;
3
+ width: 100%;
4
+ height: 100%;
5
+ }
6
+
7
+ #app {
8
+ overflow: hidden;
9
+ touch-action: pan-up;
10
+ color: #ffffff;
11
+ font-family: 'Montserrat', sans-serif;
12
+ text-align: center;
13
+ text-shadow: 0 0 5px #000000, 0 0 20px #000;
14
+ user-select: none;
15
+ }
16
+
17
+ #app h1 {
18
+ --fontSize: 50px;
19
+ --lineHeight: 70px;
20
+ width: auto;
21
+ height: calc(2 * var(--lineHeight));
22
+ line-height: var(--lineHeight);
23
+ margin: calc(50vh - var(--lineHeight)) auto 0;
24
+ font-size: var(--fontSize);
25
+ }
26
+
27
+ #app a {
28
+ margin-top: 10px;
29
+ display: inline-block;
30
+ text-decoration: none;
31
+ color: #fff;
32
+ }
33
+
34
+ #app canvas {
35
+ display: block;
36
+ position: fixed;
37
+ z-index: -1;
38
+ top: 0;
39
+ }