-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
57 lines (44 loc) · 1.24 KB
/
Copy pathstyles.css
File metadata and controls
57 lines (44 loc) · 1.24 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
* { margin:0; padding:0; box-sizing:border-box; font-family:Arial; }
body { background:#050816; color:white; overflow-x:hidden; }
canvas { position:fixed; top:0; left:0; z-index:-1; }
.hero { height:100vh; display:flex; align-items:center; padding:60px; }
.content { max-width:900px; }
.tag { display:inline-block; padding:8px 14px; background:#111827; border-radius:20px; margin-bottom:20px; }
h1 { font-size:60px; line-height:1.1; }
h1 span { color:#38bdf8; }
p { color:#cbd5e1; margin-top:20px; font-size:18px; }
.buttons { margin-top:30px; }
.buttons a {
padding:12px 20px;
margin-right:10px;
background:#38bdf8;
color:black;
text-decoration:none;
border-radius:10px;
font-weight:bold;
}
.buttons .secondary { background:#1e293b; color:white; }
.stats { display:flex; gap:40px; margin-top:40px; }
.stats span { font-size:28px; font-weight:bold; display:block; }
section { padding:100px 60px; }
.grid {
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:20px;
margin-top:20px;
}
.card {
padding:30px;
background:#0f172a;
border:1px solid #1e293b;
border-radius:12px;
}
#repos {
margin-top:20px;
color:#94a3b8;
}
footer {
text-align:center;
padding:40px;
border-top:1px solid #1e293b;
}