-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
69 lines (59 loc) · 1.07 KB
/
Copy pathstyle.css
File metadata and controls
69 lines (59 loc) · 1.07 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
* {
box-sizing: border-box;
font-family: 'Montserrat', sans-serif;
}
body {
margin: 0;
background: #1e1e2f;
color: #fff;
padding: 2rem;
text-align: center;
}
h1 {
font-size: 2.5rem;
color: #f5c518;
margin-bottom: 0.5rem;
}
p {
color: #aaa;
margin-bottom: 2rem;
}
.badge-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 2rem;
max-width: 1200px;
margin: 0 auto;
}
.badge-card {
background: #292944;
padding: 1rem;
border-radius: 1rem;
box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.badge-card:hover {
transform: translateY(-5px);
box-shadow: 0 0 20px rgba(245, 197, 24, 0.3);
}
.badge-img {
width: 100%;
max-width: 150px;
}
.badge-name {
margin-top: 1rem;
font-size: 1.1rem;
color: #fdfdfd;
}
.copy-btn {
margin-top: 0.5rem;
background: #f5c518;
border: none;
padding: 0.5rem 1rem;
border-radius: 0.5rem;
cursor: pointer;
color: #1e1e2f;
font-weight: bold;
font-size: 0.9rem;
}
.copy-btn:hover { background: #ffda4b; }