-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
73 lines (63 loc) · 1.13 KB
/
styles.css
File metadata and controls
73 lines (63 loc) · 1.13 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
70
71
72
73
body {
font-family: "Segoe UI", sans-serif;
margin: 0;
background: #1e1e2f;
color: #f5f5f5;
}
header {
background: #2c2f48;
color: #f5f5f5;
border-bottom: 2px solid #5865F2;
}
.navbar {
display: flex;
justify-content: space-between;
align-items: center;
padding: 1rem;
}
.navbar h1 {
margin: 0;
color: #5865F2;
}
.navbar ul {
list-style: none;
display: flex;
gap: 1rem;
margin: 0;
padding: 0;
}
.navbar a {
color: #f5f5f5;
text-decoration: none;
font-weight: bold;
transition: color 0.2s;
}
.navbar a:hover {
color: #5865F2;
}
.tools {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 1.5rem;
padding: 2rem;
}
.tool-card {
background: #2c2f48;
border-radius: 8px;
box-shadow: 0 2px 6px rgba(0,0,0,0.4);
padding: 1.5rem;
cursor: pointer;
transition: transform 0.2s, box-shadow 0.2s, border 0.2s;
border: 1px solid transparent;
}
.tool-card:hover {
transform: translateY(-5px);
box-shadow: 0 4px 12px rgba(88,101,242,0.6);
border: 1px solid #5865F2;
}
footer {
text-align: center;
padding: 1rem;
background: #2c2f48;
color: #aaa;
}