-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
68 lines (53 loc) · 1 KB
/
Copy pathstyle.css
File metadata and controls
68 lines (53 loc) · 1 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
body {
background: #0b0b0c;
color: #e5e7eb;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
.main {
text-align: center;
}
h1 {
font-size: 2.5rem;
font-weight: 600;
}
h2 {
margin-top: 10px;
color: #9ca3af;
font-weight: 400;
}
.container {
margin-top: 2.5rem;
display: grid;
grid-template-columns: repeat(2, 130px);
gap: 20px;
justify-content: center;
}
.btn {
width: 130px;
height: 130px;
border-radius: 16px;
cursor: pointer;
transition: all 0.2s ease;
border: 2px solid rgba(255,255,255,0.08);
}
.red { background: #ef4444; }
.green { background: #22c55e; }
.blue { background: #3b82f6; }
.yellow { background: #eab308; }
.btn:active {
transform: scale(0.95);
}
.flash {
transform: scale(1.08);
filter: brightness(1.8);
box-shadow: 0 0 25px rgba(124, 58, 237, 0.6);
}