-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
102 lines (100 loc) · 2.63 KB
/
index.html
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Nebula</title>
<link rel="icon" type="image/png" href="/favicon.png" />
<meta name="description" content="Nebula is a lightweight JavaScript library for creating beautiful universe animations. Including configurable Stars, Nebulas, Comets, Planets and Suns.">
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no">
<link href="https://fonts.googleapis.com/css2?family=Bowlby+One+SC&family=Staatliches&display=swap" rel="stylesheet">
</head>
<style rel="stylesheet">
html {
font-size: 16px;
}
.config_dashboard {
font-family: Source Code Pro,monospace;
font-size: 13px;
display: flex;
flex-direction: column;
position: absolute;
background: rgba(34, 34, 34, 0.6);
color: white;
padding: 15px;
z-index: 10;
top: 20px;
right: 20px;
width: 260px;
}
.config_dashboard input {
margin-top: 10px;
}
.gradiant {
background: linear-gradient(324deg,#209bff,#00ffea);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.card {
color: white;
display: flex;
flex-direction: column;
align-items: center;
font-family: Bowlby One SC,cursive;
z-index: 1;
text-align: center;
position: relative;
}
.button {
text-decoration: none;
font-family: Source Code Pro,monospace;
color: #fff;
margin-top: 25px;
padding: 12px 25px;
outline: none;
border: 1px solid #fff;
font-size: 18px;
cursor: pointer;
font-weight: 600;
text-transform: uppercase;
display: flex;
align-items: center;
justify-content: center;
transition: box-shadow .3s,background-color .3s,color .3s;
background-color: transparent;
-webkit-tap-highlight-color: transparent;
}
.button:hover {
background: white;
color: #221e36;
}
@media (max-width: 770px){
.config_dashboard {display: none}
.card {
padding: 20px;
}
html {
font-size: 13px;
}
}
</style>
<body>
<div id="app"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
<style>
html {
height: 100vh;
width: 100vw;
margin: 0;
}
body {
height: 100%;
width: 100%;
margin: 0;
}
#app {
height: 100%;
width: 100%;
}
</style>
</html>