-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
79 lines (66 loc) · 1.89 KB
/
styles.css
File metadata and controls
79 lines (66 loc) · 1.89 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
73
74
75
76
77
78
79
:root {
--bg: #010409;
--text: #f0f6fc;
--muted: #8b949e;
--border: #21262d;
--card: #0c1015;
--accent: #58a6ff;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif;
background: var(--bg);
color: var(--text);
min-height: 100vh;
display: flex;
flex-direction: column;
}
.site-header { border-bottom: 1px solid var(--border); padding: 16px 0; }
.header-inner { max-width: 960px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; }
.header-title { font-size: 18px; font-weight: 600; }
main { flex: 1; display: flex; align-items: center; justify-content: center; padding: 40px 24px; }
.card {
background: var(--card);
border: 1px solid var(--border);
border-radius: 12px;
padding: 40px;
width: 100%;
max-width: 560px;
text-align: center;
box-shadow: 0 16px 32px rgba(1, 4, 9, 0.85);
}
.simple-page main { padding: 0; }
.card h1 { font-size: 24px; font-weight: 600; margin-bottom: 12px; }
.muted { color: var(--muted); font-size: 14px; }
.actions { margin-top: 18px; display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.btn {
text-decoration: none;
color: var(--text);
border: 1px solid var(--border);
padding: 10px 14px;
border-radius: 10px;
background: transparent;
cursor: pointer;
}
.btn.primary { border-color: var(--accent); }
.btn:hover { border-color: var(--accent); }
.spinner {
width: 20px; height: 20px;
border: 2px solid #30363d;
border-top: 2px solid var(--accent);
border-radius: 50%;
animation: spin 1s linear infinite;
margin: 18px auto 12px;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
.site-footer {
border-top: 1px solid var(--border);
padding: 18px 24px;
color: var(--muted);
font-size: 12px;
display: flex;
justify-content: center;
}