-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Expand file tree
/
Copy pathmain.css
More file actions
77 lines (68 loc) · 1.34 KB
/
main.css
File metadata and controls
77 lines (68 loc) · 1.34 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
:root {
--bg: #0A0A0B;
--surface: #141416;
--surface-hover: #1A1A1E;
--border: #2A2A30;
--border-accent: #3A3A42;
--text: #E8E8EC;
--text-muted: #8A8A96;
--text-dim: #5A5A66;
--accent: #C8FF00;
--accent-dim: #8AB300;
--warning: #FF6B35;
--info: #5B8DEF;
--success: #34D399;
}
body {
font-family: 'DM Sans', Arial, sans-serif;
text-align: center;
color: var(--text);
font-size: 22px;
background-color: var(--bg);
margin: 0;
}
h1 {
font-family: 'Poppins', sans-serif;
font-weight: 700;
margin-top: 40px;
font-size: 48px;
color: var(--text);
}
p {
margin-top: 80px;
color: var(--text-muted);
}
button {
margin-top: 40px;
}
.btn-dark {
background-color: var(--accent);
border-color: var(--accent);
color: var(--bg);
font-weight: 600;
border-radius: 8px;
padding: 10px 28px;
transition: background-color 0.2s ease, transform 0.1s ease;
}
.btn-dark:hover {
background-color: var(--accent-dim);
border-color: var(--accent-dim);
color: var(--bg);
transform: translateY(-1px);
}
.btn-dark:active {
transform: translateY(0);
}
.page-header {
background-color: var(--surface);
padding-top: 40px;
padding-bottom: 80px;
color: var(--text);
border-bottom: 1px solid var(--border);
}
#image img {
height: 200px;
margin-top: 60px;
border-radius: 50%;
border: 3px solid var(--accent);
}