-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
51 lines (45 loc) · 1.3 KB
/
styles.css
File metadata and controls
51 lines (45 loc) · 1.3 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
/* Tailwind configuration */
@tailwind base;
@tailwind components;
@tailwind utilities;
/* Updated color scheme for better visibility */
:root {
--primary-bg: #1a202c; /* Dark slate for background */
--secondary-bg: #2d3748; /* Lighter slate for sections */
--accent: #ed8936; /* Warm orange for highlights */
--text-primary: #e2e8f0; /* Light gray for text */
--text-secondary: #a0aec0; /* Muted gray for secondary text */
}
body {
background-color: var(--primary-bg);
color: var(--text-primary);
}
.marquee {
overflow: hidden;
white-space: nowrap;
box-sizing: border-box;
background-color: var(--secondary-bg);
color: var(--accent);
padding: 0.5rem 0;
font-size: 1.125rem;
}
.marquee span {
display: inline-block;
padding-left: 100%;
animation: marquee 20s linear infinite;
}
@keyframes marquee {
0% { transform: translateX(0); }
100% { transform: translateX(-100%); }
}
.hero-bg {
background-image: url('https://images.unsplash.com/photo-1516321310764-9d9616971b75?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
background-size: cover;
background-position: center;
background-blend-mode: overlay;
background-color: rgba(0, 0, 0, 0.6); /* Darker overlay for better text contrast */
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
}