-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcta-styles.css
More file actions
76 lines (65 loc) · 1.48 KB
/
cta-styles.css
File metadata and controls
76 lines (65 loc) · 1.48 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
/* QR Code Styling */
.qr-code-container {
display: flex;
justify-content: center;
margin: 20px 0;
}
.qr-code-image {
max-width: 250px;
width: 100%;
height: auto;
border-radius: 12px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
/* Resume Review CTA Banner */
.cta-banner {
margin-top: 40px;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
padding: 30px;
border-radius: 16px;
box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
animation: pulse-glow 3s ease-in-out infinite;
}
@keyframes pulse-glow {
0%, 100% {
box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}
50% {
box-shadow: 0 10px 40px rgba(102, 126, 234, 0.5);
}
}
.cta-content {
text-align: center;
color: white;
}
.cta-content h3 {
font-size: 24px;
margin-bottom: 10px;
color: white;
}
.cta-content p {
color: rgba(255, 255, 255, 0.9);
margin-bottom: 20px;
font-size: 16px;
}
.cta-btn {
display: inline-block;
padding: 14px 35px;
background: white;
color: #667eea;
text-decoration: none;
border-radius: 25px;
font-weight: 700;
font-size: 16px;
transition: all 0.3s ease;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.cta-btn:hover {
transform: translateY(-3px) scale(1.05);
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
background: #f8f9fa;
}
/* Dark mode adjustments */
body.dark-mode .qr-code-image {
box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}