-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
57 lines (49 loc) · 864 Bytes
/
styles.css
File metadata and controls
57 lines (49 loc) · 864 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: #121212;
color: #fff;
min-height: 100vh;
display: flex;
justify-content: center;
align-items: start;
padding: 2rem;
}
.container {
max-width: 900px;
width: 100%;
}
h1 {
text-align: center;
margin-bottom: 2rem;
font-size: 2.5rem;
color: #00d09c;
}
#cards-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 1.5rem;
}
.card {
background: #1e1e1e;
padding: 1.5rem;
border-radius: 12px;
box-shadow: 0 4px 8px rgba(0,0,0,0.3);
transition: transform 0.2s;
}
.card:hover {
transform: translateY(-5px);
}
.card h2 {
margin-bottom: 0.5rem;
color: #00ffd0;
font-size: 1.3rem;
}
.card p {
font-size: 1.1rem;
margin-top: 0.3rem;
}