2025-04-07 20:48:24 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html lang="en">
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
|
<title>Jobs</title>
|
|
|
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
|
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
|
|
|
<link href="https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet">
|
|
|
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
|
|
|
|
|
</head>
|
|
|
|
|
<body>
|
|
|
|
|
<div class="navbar">
|
|
|
|
|
<div class="logo-container">
|
2025-04-08 04:30:17 +00:00
|
|
|
<i class="fas fa-link logo-icon"></i>
|
2025-04-08 03:54:30 +00:00
|
|
|
<span class="logo-text">jLink</span>
|
2025-04-07 20:48:24 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="search-container">
|
|
|
|
|
<i class="fas fa-search search-icon"></i>
|
|
|
|
|
<input type="text" placeholder="Search" class="search-input">
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="nav-items">
|
|
|
|
|
<div class="nav-item">
|
|
|
|
|
<a href="discover.html" class="nav-link">
|
|
|
|
|
<i class="fas fa-compass"></i>
|
|
|
|
|
<span>Discover</span>
|
|
|
|
|
<div class="blank"></div>
|
|
|
|
|
</a>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="nav-item active">
|
|
|
|
|
<a href="jobs.html" class="nav-link">
|
|
|
|
|
<i class="fas fa-briefcase"></i>
|
|
|
|
|
<span>Jobs</span>
|
|
|
|
|
<div class="blank"></div>
|
|
|
|
|
</a>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="nav-item">
|
|
|
|
|
<a href="proposals.html" class="nav-link">
|
|
|
|
|
<i class="fas fa-file-alt"></i>
|
|
|
|
|
<span>Proposals</span>
|
|
|
|
|
<div class="blank"></div>
|
|
|
|
|
</a>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="nav-item">
|
|
|
|
|
<a href="invoices.html" class="nav-link">
|
|
|
|
|
<i class="fas fa-dollar-sign"></i>
|
|
|
|
|
<span>Invoices</span>
|
|
|
|
|
<div class="blank"></div>
|
|
|
|
|
</a>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="nav-item">
|
|
|
|
|
<a href="learn.html" class="nav-link">
|
|
|
|
|
<i class="fas fa-graduation-cap"></i>
|
|
|
|
|
<span>Learn</span>
|
|
|
|
|
<div class="blank"></div>
|
|
|
|
|
</a>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="bottom-nav">
|
|
|
|
|
<div class="nav-item">
|
|
|
|
|
<a href="wallet.html" class="nav-link">
|
|
|
|
|
<i class="fas fa-wallet"></i>
|
|
|
|
|
<span>Wallet</span>
|
|
|
|
|
<span class="badge">$8,210.45</span>
|
|
|
|
|
</a>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="nav-item">
|
|
|
|
|
<a href="inbox.html" class="nav-link">
|
|
|
|
|
<i class="fas fa-inbox"></i>
|
|
|
|
|
<span>Inbox</span>
|
|
|
|
|
<span class="badge">7</span>
|
|
|
|
|
</a>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="nav-item user-item">
|
|
|
|
|
<a href="profile.html" class="nav-link">
|
|
|
|
|
<div class="user-avatar">
|
|
|
|
|
<img src="https://images.unsplash.com/photo-1639039186034-27f98b6e5a2f" alt="Profile">
|
|
|
|
|
</div>
|
|
|
|
|
<span>Emily</span>
|
|
|
|
|
<i class="fas fa-cog settings-icon right"></i>
|
|
|
|
|
</a>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="content">
|
|
|
|
|
<div class="jobs-header">
|
|
|
|
|
<div class="jobs-title">
|
|
|
|
|
<h1>My Jobs</h1>
|
|
|
|
|
<p>Manage your current and past jobs</p>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="jobs-actions">
|
|
|
|
|
<button class="create-job-btn"><i class="fas fa-plus"></i> Create New Job</button>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="jobs-tabs">
|
|
|
|
|
<button class="tab-btn active">Active (3)</button>
|
|
|
|
|
<button class="tab-btn">Completed (8)</button>
|
|
|
|
|
<button class="tab-btn">Archived (2)</button>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="jobs-list">
|
|
|
|
|
<div class="job-item">
|
|
|
|
|
<div class="job-status active"></div>
|
|
|
|
|
<div class="job-info">
|
|
|
|
|
<h3>E-commerce Website Redesign</h3>
|
|
|
|
|
<div class="job-meta">
|
|
|
|
|
<span class="client-name">FashionBrand Inc.</span>
|
|
|
|
|
<span class="job-date">Started: Apr 2, 2025</span>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="job-tags">
|
|
|
|
|
<span class="job-tag">UI/UX</span>
|
|
|
|
|
<span class="job-tag">Web Design</span>
|
|
|
|
|
<span class="job-tag">E-commerce</span>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="job-progress">
|
|
|
|
|
<div class="progress-label">
|
|
|
|
|
<span>Progress</span>
|
|
|
|
|
<span>65%</span>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="progress-bar">
|
|
|
|
|
<div class="progress-fill" style="width: 65%"></div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="job-payment">
|
|
|
|
|
<div class="payment-amount">$4,500</div>
|
|
|
|
|
<div class="payment-status">Milestone 2/3</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="job-actions">
|
|
|
|
|
<button class="job-action-btn"><i class="fas fa-eye"></i></button>
|
|
|
|
|
<button class="job-action-btn"><i class="fas fa-edit"></i></button>
|
|
|
|
|
<button class="job-action-btn"><i class="fas fa-ellipsis-h"></i></button>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="job-item">
|
|
|
|
|
<div class="job-status active"></div>
|
|
|
|
|
<div class="job-info">
|
|
|
|
|
<h3>Mobile App Development</h3>
|
|
|
|
|
<div class="job-meta">
|
|
|
|
|
<span class="client-name">HealthTech Solutions</span>
|
|
|
|
|
<span class="job-date">Started: Mar 15, 2025</span>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="job-tags">
|
|
|
|
|
<span class="job-tag">React Native</span>
|
|
|
|
|
<span class="job-tag">Mobile</span>
|
|
|
|
|
<span class="job-tag">Healthcare</span>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="job-progress">
|
|
|
|
|
<div class="progress-label">
|
|
|
|
|
<span>Progress</span>
|
|
|
|
|
<span>40%</span>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="progress-bar">
|
|
|
|
|
<div class="progress-fill" style="width: 40%"></div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="job-payment">
|
|
|
|
|
<div class="payment-amount">$12,000</div>
|
|
|
|
|
<div class="payment-status">Milestone 1/4</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="job-actions">
|
|
|
|
|
<button class="job-action-btn"><i class="fas fa-eye"></i></button>
|
|
|
|
|
<button class="job-action-btn"><i class="fas fa-edit"></i></button>
|
|
|
|
|
<button class="job-action-btn"><i class="fas fa-ellipsis-h"></i></button>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="job-item">
|
|
|
|
|
<div class="job-status active"></div>
|
|
|
|
|
<div class="job-info">
|
|
|
|
|
<h3>Marketing Strategy Consultation</h3>
|
|
|
|
|
<div class="job-meta">
|
|
|
|
|
<span class="client-name">GreenEco Startups</span>
|
|
|
|
|
<span class="job-date">Started: Apr 5, 2025</span>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="job-tags">
|
|
|
|
|
<span class="job-tag">Marketing</span>
|
|
|
|
|
<span class="job-tag">Strategy</span>
|
|
|
|
|
<span class="job-tag">Sustainability</span>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="job-progress">
|
|
|
|
|
<div class="progress-label">
|
|
|
|
|
<span>Progress</span>
|
|
|
|
|
<span>15%</span>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="progress-bar">
|
|
|
|
|
<div class="progress-fill" style="width: 15%"></div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="job-payment">
|
|
|
|
|
<div class="payment-amount">$3,200</div>
|
|
|
|
|
<div class="payment-status">Milestone 0/3</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="job-actions">
|
|
|
|
|
<button class="job-action-btn"><i class="fas fa-eye"></i></button>
|
|
|
|
|
<button class="job-action-btn"><i class="fas fa-edit"></i></button>
|
|
|
|
|
<button class="job-action-btn"><i class="fas fa-ellipsis-h"></i></button>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</body>
|
|
|
|
|
<style>
|
|
|
|
|
* {
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
font-family: "Urbanist", sans-serif;
|
|
|
|
|
}
|
|
|
|
|
body {
|
|
|
|
|
margin: 0;
|
|
|
|
|
min-width: 320px;
|
|
|
|
|
min-height: 100vh;
|
|
|
|
|
width: 100vw;
|
|
|
|
|
height: 100vh;
|
|
|
|
|
padding: 20px;
|
|
|
|
|
display: flex;
|
|
|
|
|
gap: 20px;
|
|
|
|
|
}
|
|
|
|
|
.navbar {
|
|
|
|
|
width: 300px;
|
|
|
|
|
height: 100%;
|
|
|
|
|
background-color: #EBF2F2;
|
|
|
|
|
border-radius: 20px;
|
|
|
|
|
padding: 20px;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
overflow-y: auto;
|
|
|
|
|
}
|
|
|
|
|
.content {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
background-color: white;
|
|
|
|
|
border-radius: 20px;
|
|
|
|
|
padding: 30px;
|
|
|
|
|
overflow-y: auto;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Logo styling */
|
|
|
|
|
.logo-container {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
margin-bottom: 20px;
|
|
|
|
|
}
|
|
|
|
|
.logo-icon {
|
|
|
|
|
font-size: 24px;
|
|
|
|
|
margin-right: 10px;
|
|
|
|
|
color: #333;
|
|
|
|
|
}
|
|
|
|
|
.logo-text {
|
|
|
|
|
font-size: 22px;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
color: #333;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Search bar styling */
|
|
|
|
|
.search-container {
|
|
|
|
|
position: relative;
|
|
|
|
|
margin-bottom: 25px;
|
|
|
|
|
}
|
|
|
|
|
.search-input {
|
|
|
|
|
width: 100%;
|
|
|
|
|
padding: 12px 15px 12px 40px;
|
|
|
|
|
border: none;
|
|
|
|
|
border-radius: 20px;
|
|
|
|
|
background-color: white;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
}
|
|
|
|
|
.search-icon {
|
|
|
|
|
position: absolute;
|
|
|
|
|
left: 15px;
|
|
|
|
|
top: 50%;
|
|
|
|
|
transform: translateY(-50%);
|
|
|
|
|
color: #888;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Navigation items */
|
|
|
|
|
.nav-items {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
gap: 20px;
|
|
|
|
|
margin-bottom: auto;
|
|
|
|
|
}
|
|
|
|
|
.nav-item {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
padding: 8px 10px;
|
|
|
|
|
color: #333;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
position: relative;
|
|
|
|
|
border-radius: 10px;
|
|
|
|
|
margin: 2px 0;
|
|
|
|
|
transition: background-color 0.3s ease;
|
|
|
|
|
}
|
|
|
|
|
.nav-item i {
|
|
|
|
|
width: 25px;
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
position: relative;
|
|
|
|
|
z-index: 2;
|
|
|
|
|
}
|
|
|
|
|
.nav-item i.right {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: flex-end;
|
|
|
|
|
margin-left: auto;
|
|
|
|
|
}
|
|
|
|
|
.nav-item span {
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
position: relative;
|
|
|
|
|
z-index: 2;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.nav-link {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
width: 100%;
|
|
|
|
|
color: inherit;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
}
|
|
|
|
|
.nav-item.active {
|
|
|
|
|
background-color: white;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Bottom navigation */
|
|
|
|
|
.bottom-nav {
|
|
|
|
|
margin-top: auto;
|
|
|
|
|
border-top: 1px solid rgba(0, 0, 0, 0.05);
|
|
|
|
|
padding-top: 20px;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
gap: 20px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Badge styling */
|
|
|
|
|
.badge {
|
|
|
|
|
color: #333;
|
|
|
|
|
border-radius: 10px;
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
margin-left: auto;
|
|
|
|
|
position: relative;
|
|
|
|
|
z-index: 2;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* User item styling */
|
|
|
|
|
.user-item {
|
|
|
|
|
margin-top: 5px;
|
|
|
|
|
}
|
|
|
|
|
.user-avatar {
|
|
|
|
|
width: 19px;
|
|
|
|
|
height: 19px;
|
|
|
|
|
background-color: #FF6B6B;
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
color: white;
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
margin-right: 10px;
|
|
|
|
|
position: relative;
|
|
|
|
|
z-index: 2;
|
|
|
|
|
}
|
|
|
|
|
.user-avatar img {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
object-fit: cover;
|
|
|
|
|
}
|
|
|
|
|
.blank {
|
|
|
|
|
margin-left: auto;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Jobs page specific styles */
|
|
|
|
|
.jobs-header {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
align-items: center;
|
|
|
|
|
margin-bottom: 30px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.jobs-title h1 {
|
|
|
|
|
font-size: 32px;
|
|
|
|
|
margin: 0 0 5px 0;
|
|
|
|
|
color: #333;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.jobs-title p {
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
color: #666;
|
|
|
|
|
margin: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.create-job-btn {
|
|
|
|
|
background-color: #222;
|
|
|
|
|
color: white;
|
|
|
|
|
border: none;
|
|
|
|
|
border-radius: 20px;
|
|
|
|
|
padding: 10px 20px;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 8px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.jobs-tabs {
|
|
|
|
|
display: flex;
|
|
|
|
|
gap: 15px;
|
|
|
|
|
margin-bottom: 25px;
|
|
|
|
|
border-bottom: 1px solid #eee;
|
|
|
|
|
padding-bottom: 15px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tab-btn {
|
|
|
|
|
background: none;
|
|
|
|
|
border: none;
|
|
|
|
|
padding: 8px 15px;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
color: #666;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
border-radius: 20px;
|
|
|
|
|
transition: all 0.2s ease;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tab-btn.active {
|
|
|
|
|
background-color: #f5f5f5;
|
|
|
|
|
color: #333;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.jobs-list {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
gap: 15px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.job-item {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
padding: 20px;
|
|
|
|
|
border-radius: 15px;
|
|
|
|
|
background-color: #f9f9f9;
|
|
|
|
|
gap: 20px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.job-status {
|
|
|
|
|
width: 10px;
|
|
|
|
|
height: 10px;
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.job-status.active {
|
|
|
|
|
background-color: #4CAF50;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.job-info {
|
|
|
|
|
flex: 2;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.job-info h3 {
|
|
|
|
|
margin: 0 0 8px 0;
|
|
|
|
|
font-size: 18px;
|
|
|
|
|
color: #333;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.job-meta {
|
|
|
|
|
display: flex;
|
|
|
|
|
gap: 15px;
|
|
|
|
|
margin-bottom: 10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.client-name, .job-date {
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
color: #666;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.job-tags {
|
|
|
|
|
display: flex;
|
|
|
|
|
gap: 8px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.job-tag {
|
|
|
|
|
background-color: #f0f0f0;
|
|
|
|
|
padding: 4px 10px;
|
|
|
|
|
border-radius: 15px;
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
color: #555;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.job-progress {
|
|
|
|
|
flex: 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.progress-label {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
margin-bottom: 8px;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
color: #555;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.progress-bar {
|
|
|
|
|
height: 8px;
|
|
|
|
|
background-color: #eee;
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.progress-fill {
|
|
|
|
|
height: 100%;
|
|
|
|
|
background-color: #4CAF50;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.job-payment {
|
|
|
|
|
flex: 1;
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.payment-amount {
|
|
|
|
|
font-size: 18px;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
color: #333;
|
|
|
|
|
margin-bottom: 5px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.payment-status {
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
color: #666;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.job-actions {
|
|
|
|
|
display: flex;
|
|
|
|
|
gap: 10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.job-action-btn {
|
|
|
|
|
width: 36px;
|
|
|
|
|
height: 36px;
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
border: 1px solid #ddd;
|
|
|
|
|
background-color: white;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
color: #555;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
</style>
|
|
|
|
|
</html>
|