-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
77 lines (66 loc) · 1.3 KB
/
Copy pathstyles.css
File metadata and controls
77 lines (66 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
/* styles.css */
:root {
--primary: #0d6efd;
}
body {
scroll-behavior: smooth;
}
.hero {
background: linear-gradient(135deg, #0d6efd, #6610f2);
position: relative;
overflow: hidden;
}
.hero::before {
content: '';
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
animation: scanline 8s linear infinite;
opacity: 0.15;
}
@keyframes scanline {
0% { transform: translateY(-100%); }
100% { transform: translateY(200%); }
}
.step-circle {
width: 60px;
height: 60px;
background: #0d6efd;
color: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.8rem;
font-weight: bold;
box-shadow: 0 10px 20px rgba(13, 110, 253, 0.3);
}
.card {
transition: all 0.3s ease;
}
.card:hover {
transform: translateY(-8px);
box-shadow: 0 15px 30px rgba(0,0,0,0.15) !important;
}
.progress-bar {
transition: width 2s ease;
}
.modal-content {
border-radius: 16px;
}
img {
max-width: 100%;
border-radius: 12px;
}
/* Mobile optimizations */
@media (max-width: 768px) {
.display-3 {
font-size: 2.2rem;
}
.hero {
min-height: 90vh;
}
}