-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
executable file
·88 lines (81 loc) · 2.18 KB
/
styles.css
File metadata and controls
executable file
·88 lines (81 loc) · 2.18 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
78
79
80
81
82
83
84
85
86
87
88
/* JobSieve Content Styles - Injected into LinkedIn */
/* Hidden job cards */
.jobsieve-hidden {
display: none !important;
}
/* Highlighted job cards — uses box-shadow instead of outline to avoid
clipping by LinkedIn's overflow:hidden parent containers */
.jobsieve-highlighted {
position: relative !important;
box-shadow:
inset 0 0 0 2.5px #21838f,
0 2px 12px rgba(33, 131, 143, 0.18) !important;
background-color: rgba(33, 131, 143, 0.06) !important;
border-radius: 10px !important;
margin-top: 28px !important;
z-index: 1 !important;
animation: jobsieve-highlight-in 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
/* Badge label — sits above the card using margin-top space */
.jobsieve-highlighted::before {
content: "✨ Highlighted by JobSieve";
position: absolute;
top: -22px;
left: 10px;
background: linear-gradient(135deg, #21838f 0%, #1a6b75 100%);
color: white;
font-family:
-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
font-size: 10.5px;
font-weight: 600;
letter-spacing: 0.2px;
padding: 3px 10px;
border-radius: 8px;
line-height: 1.4;
z-index: 10;
pointer-events: none;
box-shadow: 0 2px 6px rgba(33, 131, 143, 0.3);
white-space: nowrap;
}
/* Subtle hover lift */
.jobsieve-highlighted:hover {
box-shadow:
inset 0 0 0 2.5px #1a6b75,
0 4px 20px rgba(33, 131, 143, 0.22) !important;
}
/* Entrance animation — no scale to avoid layout shift */
@keyframes jobsieve-highlight-in {
0% {
opacity: 0.6;
box-shadow:
inset 0 0 0 2.5px rgba(33, 131, 143, 0),
0 0 0 0 rgba(33, 131, 143, 0);
}
100% {
opacity: 1;
box-shadow:
inset 0 0 0 2.5px #21838f,
0 2px 12px rgba(33, 131, 143, 0.18);
}
}
/* Fade out animation for hidden cards */
.jobsieve-fade-out {
opacity: 0 !important;
transform: scale(0.97) !important;
transition:
opacity 0.25s ease,
transform 0.25s ease !important;
}
/* Status indicator for debugging (only visible in development) */
.jobsieve-debug {
position: fixed;
top: 10px;
right: 10px;
background: rgba(0, 0, 0, 0.8);
color: white;
padding: 8px 12px;
border-radius: 6px;
font-size: 12px;
z-index: 9999;
pointer-events: none;
}