-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.css
60 lines (49 loc) · 1012 Bytes
/
tailwind.css
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
.tab-button {
background-color: #2d2d2d;
border-radius: 0.375rem 0.375rem 0 0;
padding: 0.5rem 1rem;
color: white;
border-bottom: 2px solid transparent;
cursor: pointer;
transition: all 0.2s;
}
.tab-button.active {
background-color: #1e1e1e;
border-color: var(--accent);
color: var(--accent);
font-weight: bold;
}
.tab-button:hover {
background-color: #3a3a3a;
}
:root {
--accent: #f29f80;
--muted: #a87c6f;
}
body {
font-family: "Nunito Sans", sans-serif;
}
pre,
code {
font-family: "JetBrains Mono", monospace;
}
.tab-button {
@apply px-4 py-2 rounded-t-md bg-[#2d2d2d] text-white border-b-2 border-transparent;
}
.tab-button.active {
@apply border-[var(--accent)] text-[var(--accent)] font-bold;
}
.tab-content {
display: none;
}
.tab-content.active {
display: block;
}
.glow-card {
transition: all 0.3s ease;
box-shadow: 0 0 8px rgba(255, 200, 150, 0.1);
will-change: transform;
}
.glow-card:hover {
box-shadow: 0 0 15px rgba(255, 200, 150, 0.4);
}