-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
62 lines (53 loc) · 856 Bytes
/
style.css
File metadata and controls
62 lines (53 loc) · 856 Bytes
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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: system-ui, sans-serif;
}
body {
background: #020617;
color: #e2e8f0;
min-height: 100vh;
padding: 60px 20px;
}
header {
text-align: center;
margin-bottom: 60px;
}
h1 {
font-size: 2.4rem;
margin-bottom: 10px;
}
header p {
color: #94a3b8;
font-size: 0.9rem;
}
.container {
max-width: 800px;
margin: auto;
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 24px;
}
.card {
background: #1e293b;
border: 1px solid #334155;
border-radius: 12px;
padding: 24px;
text-decoration: none;
color: inherit;
transition: 0.25s ease;
}
.card h2 {
font-size: 1.2rem;
margin-bottom: 8px;
}
.card span {
font-size: 0.85rem;
color: #94a3b8;
}
.card:hover {
transform: translateY(-5px);
background: #273449;
border-color: #475569;
}