-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.css
More file actions
61 lines (60 loc) · 1.51 KB
/
project.css
File metadata and controls
61 lines (60 loc) · 1.51 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
@font-face {
font-family: 'LucideIcons';
src: url('https://cdn.jsdelivr.net/npm/lucide-static@latest/font/Lucide.ttf') format('truetype');
}
.lucide {
font-family: 'LucideIcons';
font-size: 1.25em; /* Adjust icon size as needed */
line-height: 1;
display: inline-block; /* Prevents layout shifts */
}
/* Add custom styles or overrides here if needed */
body {
font-family: 'Inter', sans-serif;
background-color: #f8fafc; /* Light gray background */
color: #1f2937; /* Dark gray text */
}
/* Simple smooth scroll */
html {
scroll-behavior: smooth;
}
/* Style for project cards */
.project-card {
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.project-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}
/* Style for skill tags */
.skill-tag {
background-color: #219bed; /* Light blue background */
color: #0c4a6e; /* Dark blue text */
padding: 0.25rem 0.75rem;
border-radius: 9999px; /* Pill shape */
font-size: 0.875rem;
font-weight: 500;
display: inline-flex;
align-items: center;
gap: 0.25rem;
}
/* Tailwind prose class styling */
.prose {
color: #374151;
line-height: 1.75;
}
.prose p {
margin-top: 1.25em;
margin-bottom: 1.25em;
}
.prose-indigo a {
color: #4f46e5;
text-decoration: none;
}
.prose-indigo a:hover {
text-decoration: underline;
}
.prose-lg {
font-size: 1.125rem; /* 18px */
line-height: 1.7777778;
}