wow
This commit is contained in:
commit
794dce869c
16 changed files with 5430 additions and 0 deletions
34
frontend/pass.css
Normal file
34
frontend/pass.css
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
* {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
html,
|
||||
body,
|
||||
#pass-root {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
margin: 0;
|
||||
overflow: hidden;
|
||||
background: #000;
|
||||
}
|
||||
|
||||
body {
|
||||
min-width: 320px;
|
||||
}
|
||||
|
||||
canvas {
|
||||
display: block;
|
||||
touch-action: none;
|
||||
}
|
||||
|
||||
.loading {
|
||||
display: grid;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
color: #fff;
|
||||
background: #000;
|
||||
font: 12px monospace;
|
||||
letter-spacing: 0.12em;
|
||||
text-transform: uppercase;
|
||||
place-items: center;
|
||||
}
|
||||
Loading…
Reference in a new issue