-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
72 lines (65 loc) · 1.33 KB
/
Copy pathstyle.css
File metadata and controls
72 lines (65 loc) · 1.33 KB
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
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');
:root{
--bg:#0D1117;
--surface:#161B22;
--surface-hover:#21262D;
--text:#F0F6FC;
--muted:#8B949E;
--accent:#10B981;
--border:#30363D;
--radius:20px;
}
*{
margin:0;
padding:0;
box-sizing:border-box;
}
body{
background:var(--bg);
color:var(--text);
font-family:"Inter",sans-serif;
min-height:100vh;
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
overflow:hidden;
}
.back-btn{
position:absolute;
top:30px;
left:30px;
display:inline-flex;
justify-content:center;
align-items:center;
padding:12px 24px;
border-radius:999px;
text-decoration:none;
font-weight:600;
font-size:0.9rem;
background:var(--surface);
color:var(--text);
border:1px solid var(--border);
transition:.25s;
z-index:1000;
}
.back-btn:hover{
background:var(--surface-hover);
border-color:var(--accent);
transform:translateY(-2px);
color:white;
}
canvas{
display:block;
border-radius:var(--radius);
border:1px solid var(--border);
box-shadow:0 20px 40px rgba(0,0,0,0.5);
background:var(--surface);
}
html, body {
margin: 0;
padding: 0;
}
canvas {
display: block;
}