clean up
This commit is contained in:
@@ -1,98 +0,0 @@
|
||||
/* cursor.css */
|
||||
|
||||
/* Default: System cursor (not custom) */
|
||||
body,
|
||||
html,
|
||||
a,
|
||||
button,
|
||||
input,
|
||||
textarea,
|
||||
select,
|
||||
.menu-toggle,
|
||||
label {
|
||||
cursor: auto !important;
|
||||
}
|
||||
|
||||
/* Custom cursor only when enabled */
|
||||
body:not(.system-cursor),
|
||||
body:not(.system-cursor) a,
|
||||
body:not(.system-cursor) button,
|
||||
body:not(.system-cursor) input,
|
||||
body:not(.system-cursor) textarea,
|
||||
body:not(.system-cursor) select,
|
||||
body:not(.system-cursor) .menu-toggle,
|
||||
body:not(.system-cursor) label {
|
||||
cursor: none !important;
|
||||
}
|
||||
|
||||
#venom-cursor {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
pointer-events: none;
|
||||
z-index: 999999;
|
||||
mix-blend-mode: normal;
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* Show custom cursor only when not system cursor */
|
||||
body:not(.system-cursor) #venom-cursor {
|
||||
display: block;
|
||||
}
|
||||
|
||||
@media (pointer: coarse) {
|
||||
body, html, a, button, input, textarea, select {
|
||||
cursor: auto !important;
|
||||
}
|
||||
|
||||
#venom-cursor {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
body.system-cursor,
|
||||
body.system-cursor * {
|
||||
cursor: auto !important;
|
||||
}
|
||||
|
||||
body.system-cursor #venom-cursor {
|
||||
display: none !important;
|
||||
opacity: 0;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
#cursorToggle {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
background: transparent;
|
||||
border: 2px solid var(--primary-dark);
|
||||
color: var(--primary-dark);
|
||||
width: 45px;
|
||||
height: 45px;
|
||||
border-radius: 12px;
|
||||
cursor: auto; /* Use system cursor for toggle button */
|
||||
transition: all 0.3s ease;
|
||||
font-size: 20px;
|
||||
}
|
||||
|
||||
#cursorToggle:hover {
|
||||
background: var(--primary-dark);
|
||||
color: var(--primary-light);
|
||||
}
|
||||
|
||||
body:not(.system-cursor) #cursorToggle {
|
||||
cursor: none; /* Use custom cursor when custom is enabled */
|
||||
}
|
||||
|
||||
.top-banner.dark-theme #cursorToggle {
|
||||
border-color: var(--primary-light);
|
||||
color: var(--primary-light);
|
||||
}
|
||||
|
||||
.top-banner.dark-theme #cursorToggle:hover {
|
||||
background: var(--primary-light);
|
||||
color: var(--primary-dark);
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
@@ -1,219 +0,0 @@
|
||||
/* Leads Dashboard Styles */
|
||||
|
||||
.leads-content {
|
||||
max-width: 900px;
|
||||
}
|
||||
|
||||
.dashboard-container {
|
||||
background: white;
|
||||
padding: 40px;
|
||||
border-radius: 24px;
|
||||
box-shadow: 0 15px 50px rgba(79, 71, 71, 0.1);
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
|
||||
.dashboard-title {
|
||||
color: var(--primary-dark);
|
||||
font-size: 28px;
|
||||
margin-bottom: 8px;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.dashboard-subtitle {
|
||||
color: var(--primary-mid);
|
||||
font-size: 15px;
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
|
||||
/* Leads Table */
|
||||
.leads-table-wrapper {
|
||||
overflow-x: auto;
|
||||
border-radius: 16px;
|
||||
border: 1px solid rgba(119, 119, 100, 0.15);
|
||||
}
|
||||
|
||||
.leads-table {
|
||||
width: 100%;
|
||||
border-collapse: collapse;
|
||||
min-width: 500px;
|
||||
}
|
||||
|
||||
.leads-table thead {
|
||||
background: var(--primary-light);
|
||||
}
|
||||
|
||||
.leads-table th {
|
||||
padding: 16px 20px;
|
||||
text-align: left;
|
||||
font-weight: 600;
|
||||
color: var(--primary-dark);
|
||||
font-size: 14px;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.5px;
|
||||
}
|
||||
|
||||
.leads-table td {
|
||||
padding: 18px 20px;
|
||||
border-top: 1px solid rgba(119, 119, 100, 0.1);
|
||||
color: var(--primary-dark);
|
||||
font-size: 15px;
|
||||
}
|
||||
|
||||
.leads-table tbody tr {
|
||||
transition: background 0.2s ease;
|
||||
}
|
||||
|
||||
.leads-table tbody tr:hover {
|
||||
background: rgba(235, 235, 222, 0.5);
|
||||
}
|
||||
|
||||
/* Status Badges */
|
||||
.status-badge {
|
||||
display: inline-block;
|
||||
padding: 6px 14px;
|
||||
border-radius: 20px;
|
||||
font-size: 13px;
|
||||
font-weight: 600;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.3px;
|
||||
}
|
||||
|
||||
.status-badge.completed {
|
||||
background: rgba(102, 187, 106, 0.15);
|
||||
color: var(--accent-green);
|
||||
}
|
||||
|
||||
.status-badge.in-progress {
|
||||
background: rgba(245, 124, 0, 0.15);
|
||||
color: var(--accent-orange);
|
||||
}
|
||||
|
||||
.status-badge.open {
|
||||
background: rgba(119, 119, 100, 0.15);
|
||||
color: var(--primary-mid);
|
||||
}
|
||||
|
||||
/* Action Button */
|
||||
.action-btn {
|
||||
padding: 8px 16px;
|
||||
background: transparent;
|
||||
border: 2px solid var(--accent-teal);
|
||||
color: var(--accent-teal);
|
||||
border-radius: 20px;
|
||||
font-size: 13px;
|
||||
font-weight: 600;
|
||||
cursor: pointer;
|
||||
transition: all 0.3s ease;
|
||||
text-decoration: none;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.action-btn:hover {
|
||||
background: var(--accent-teal);
|
||||
color: white;
|
||||
}
|
||||
|
||||
/* Offers Section */
|
||||
.offers-section {
|
||||
margin-top: 30px;
|
||||
}
|
||||
|
||||
.offers-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
|
||||
gap: 24px;
|
||||
}
|
||||
|
||||
.offer-card {
|
||||
background: var(--primary-light);
|
||||
border-radius: 20px;
|
||||
padding: 30px;
|
||||
text-align: center;
|
||||
transition: all 0.3s ease;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.offer-card:hover {
|
||||
transform: translateY(-5px);
|
||||
box-shadow: 0 15px 40px rgba(79, 71, 71, 0.15);
|
||||
background: white;
|
||||
}
|
||||
|
||||
.offer-icon {
|
||||
font-size: 40px;
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
|
||||
.offer-title {
|
||||
color: var(--primary-dark);
|
||||
font-size: 20px;
|
||||
font-weight: 600;
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
|
||||
.offer-description {
|
||||
color: var(--primary-mid);
|
||||
font-size: 14px;
|
||||
line-height: 1.6;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.offer-btn {
|
||||
display: inline-block;
|
||||
padding: 10px 24px;
|
||||
background: var(--accent-teal);
|
||||
color: white;
|
||||
text-decoration: none;
|
||||
border-radius: 25px;
|
||||
font-size: 14px;
|
||||
font-weight: 600;
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
.offer-btn:hover {
|
||||
background: #1e8e82;
|
||||
box-shadow: 0 5px 20px rgba(38, 166, 154, 0.3);
|
||||
}
|
||||
|
||||
/* Active menu link */
|
||||
.slide-menu a.active {
|
||||
background: var(--primary-light);
|
||||
border-left-color: var(--accent-teal);
|
||||
color: var(--accent-teal);
|
||||
}
|
||||
|
||||
/* Empty state */
|
||||
.empty-state {
|
||||
text-align: center;
|
||||
padding: 40px;
|
||||
color: var(--primary-mid);
|
||||
}
|
||||
|
||||
.empty-state p {
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
/* Responsive */
|
||||
@media (max-width: 600px) {
|
||||
.dashboard-container {
|
||||
padding: 25px;
|
||||
}
|
||||
|
||||
.dashboard-title {
|
||||
font-size: 22px;
|
||||
}
|
||||
|
||||
.leads-table th,
|
||||
.leads-table td {
|
||||
padding: 12px 14px;
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
.offer-card {
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
.offers-grid {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
}
|
||||
1
Profice WebSite/style/leads.min.css
vendored
1
Profice WebSite/style/leads.min.css
vendored
@@ -1 +0,0 @@
|
||||
.leads-content{max-width:900px}.dashboard-container{background:white;padding:40px;border-radius:24px;box-shadow:0 15px 50px rgba(79,71,71,0.1);margin-bottom:30px}.dashboard-title{color:var(--primary-dark);font-size:28px;margin-bottom:8px;font-weight:600}.dashboard-subtitle{color:var(--primary-mid);font-size:15px;margin-bottom:30px}.leads-table-wrapper{overflow-x:auto;border-radius:16px;border:1px solid rgba(119,119,100,0.15)}.leads-table{width:100%;border-collapse:collapse;min-width:500px}.leads-table thead{background:var(--primary-light)}.leads-table th{padding:16px 20px;text-align:left;font-weight:600;color:var(--primary-dark);font-size:14px;text-transform:uppercase;letter-spacing:0.5px}.leads-table td{padding:18px 20px;border-top:1px solid rgba(119,119,100,0.1);color:var(--primary-dark);font-size:15px}.leads-table tbody tr{transition:background 0.2s ease}.leads-table tbody tr:hover{background:rgba(235,235,222,0.5)}.status-badge{display:inline-block;padding:6px 14px;border-radius:20px;font-size:13px;font-weight:600;text-transform:uppercase;letter-spacing:0.3px}.status-badge.completed{background:rgba(102,187,106,0.15);color:var(--accent-green)}.status-badge.in-progress{background:rgba(245,124,0,0.15);color:var(--accent-orange)}.status-badge.open{background:rgba(119,119,100,0.15);color:var(--primary-mid)}.action-btn{padding:8px 16px;background:transparent;border:2px solid var(--accent-teal);color:var(--accent-teal);border-radius:20px;font-size:13px;font-weight:600;cursor:pointer;transition:all 0.3s ease;text-decoration:none;display:inline-block}.action-btn:hover{background:var(--accent-teal);color:white}.offers-section{margin-top:30px}.offers-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:24px}.offer-card{background:var(--primary-light);border-radius:20px;padding:30px;text-align:center;transition:all 0.3s ease;cursor:pointer}.offer-card:hover{transform:translateY(-5px);box-shadow:0 15px 40px rgba(79,71,71,0.15);background:white}.offer-icon{font-size:40px;margin-bottom:16px}.offer-title{color:var(--primary-dark);font-size:20px;font-weight:600;margin-bottom:12px}.offer-description{color:var(--primary-mid);font-size:14px;line-height:1.6;margin-bottom:20px}.offer-btn{display:inline-block;padding:10px 24px;background:var(--accent-teal);color:white;text-decoration:none;border-radius:25px;font-size:14px;font-weight:600;transition:all 0.3s ease}.offer-btn:hover{background:#1e8e82;box-shadow:0 5px 20px rgba(38,166,154,0.3)}.slide-menu a.active{background:var(--primary-light);border-left-color:var(--accent-teal);color:var(--accent-teal)}.empty-state{text-align:center;padding:40px;color:var(--primary-mid)}.empty-state p{font-size:16px}@media (max-width:600px){.dashboard-container{padding:25px}.dashboard-title{font-size:22px}.leads-table th,.leads-table td{padding:12px 14px;font-size:13px}.offer-card{padding:20px}.offers-grid{grid-template-columns:1fr}}
|
||||
@@ -1,30 +0,0 @@
|
||||
/* Fixed list styling for system cards */
|
||||
.what-it-does ul,
|
||||
.result ul {
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.what-it-does li,
|
||||
.result li {
|
||||
font-size: 0.9rem;
|
||||
line-height: 1.5;
|
||||
margin-bottom: 8px;
|
||||
padding-left: 20px;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.what-it-does li::before {
|
||||
content: '→';
|
||||
position: absolute;
|
||||
left: 0;
|
||||
color: var(--primary-mid);
|
||||
}
|
||||
|
||||
.result li::before {
|
||||
content: '✓';
|
||||
position: absolute;
|
||||
left: 0;
|
||||
color: var(--accent-green);
|
||||
font-weight: bold;
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user