forked from DarlynGomez/MYND
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjobs.html
More file actions
222 lines (200 loc) · 8.15 KB
/
jobs.html
File metadata and controls
222 lines (200 loc) · 8.15 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
<!DOCTYPE html>
<html lang="en">
<!-- Jobs Page -->
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>BMCC Campus Jobs</title>
<script src="https://cdn.tailwindcss.com"></script>
<style>
:root {
--primary-color: #003d82;
--secondary-color: #0056b3;
--accent-color: #ffd700;
--background-color: #f5f7fa;
--text-color: #333;
--sidebar-width: 250px;
--header-height: 60px;
--card-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: var(--background-color);
min-height: 100vh;
}
.job-card {
transition: transform 0.3s ease-in-out;
background: white;
border-radius: 8px;
overflow: hidden;
box-shadow: var(--card-shadow);
}
.job-card:hover {
transform: translateY(-5px);
}
/* Sidebar Styles */
.sidebar {
width: var(--sidebar-width);
background-color: white;
border-right: 1px solid #eaeaea;
height: 100vh;
position: fixed;
left: 0;
top: 0;
display: flex;
flex-direction: column;
box-shadow: 2px 0 4px rgba(0, 0, 0, 0.1);
z-index: 50;
}
.main-content {
margin-left: var(--sidebar-width);
padding: 2rem;
}
.nav-menu {
padding: 1.5rem;
flex-grow: 1;
}
.nav-item {
padding: 0.75rem 1rem;
border-radius: 8px;
color: #666;
text-decoration: none;
display: flex;
align-items: center;
gap: 0.75rem;
transition: all 0.3s ease;
}
.nav-item:hover {
background-color: var(--background-color);
color: var(--primary-color);
}
.nav-item.active {
background-color: var(--primary-color);
color: white;
}
.benefit-card {
transition: transform 0.3s ease;
}
.benefit-card:hover {
transform: translateY(-5px);
}
</style>
</head>
<body class="flex">
<!-- Sidebar Navigation -->
<aside class="sidebar">
<div class="sidebar-header p-6 border-b border-gray-200">
<div class="flex items-center gap-3">
<div class="w-10 h-10 bg-blue-800 rounded-lg"></div>
<span class="text-lg font-bold text-blue-800">BMCC Jobs</span>
</div>
</div>
<nav class="nav-menu">
<a href="#" class="nav-item">
<svg class="w-5 h-5" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path d="M3 12l2-2m0 0l7-7 7 7M5 10v10a1 1 0 001 1h3m10-11l2 2m-2-2v10a1 1 0 01-1 1h-3m-6 0a1 1 0 001-1v-4a1 1 0 011-1h2a1 1 0 011 1v4a1 1 0 001 1m-6 0h6"></path>
</svg>
<span>Dashboard</span>
</a>
<a href="#" class="nav-item active">
<svg class="w-5 h-5" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path d="M21 13.255A23.931 23.931 0 0112 15c-3.183 0-6.22-.62-9-1.745M16 6V4a2 2 0 00-2-2h-4a2 2 0 00-2 2v2m4 6h.01M5 20h14a2 2 0 002-2V8a2 2 0 00-2-2H5a2 2 0 00-2 2v10a2 2 0 002 2z"></path>
</svg>
<span>Campus Jobs</span>
</a>
</nav>
<div class="user-profile p-6 border-t border-gray-200">
<div class="flex items-center gap-3">
<div class="w-10 h-10 bg-yellow-400 rounded-full flex items-center justify-center font-bold text-blue-800">
J
</div>
<div>
<div class="font-medium">John Doe</div>
<div class="text-sm text-gray-500">Student</div>
</div>
</div>
</div>
</aside>
<!-- Main Content Area -->
<main class="main-content">
<div class="mb-8">
<h1 class="text-3xl font-bold text-blue-800 mb-2">Available Positions</h1>
<p class="text-gray-600">Explore current job opportunities on campus</p>
</div>
<!-- Job Cards Grid -->
<div class="grid md:grid-cols-3 gap-6 mb-12">
<!-- College Assistant Card -->
<div class="job-card">
<img src="./images/ca.jpg" alt="College Assistant" class="w-full h-48 object-cover">
<div class="p-6">
<h3 class="text-xl font-bold text-blue-800 mb-2">College Assistant</h3>
<p class="text-gray-600 mb-4">Work in various departments while gaining valuable experience.</p>
<div class="flex items-center justify-between">
<span class="text-sm text-blue-600">$15.61/hour</span>
<button onclick="window.location.href='college-assistant.html'" class="px-4 py-2 bg-blue-800 text-white rounded-lg hover:bg-blue-700 transition">
View Details
</button>
</div>
</div>
</div>
<!-- Mentor Card -->
<div class="job-card">
<img src="./images/mentor.jpg" alt="Mentor" class="w-full h-48 object-cover">
<div class="p-6">
<h3 class="text-xl font-bold text-blue-800 mb-2">Mentor</h3>
<p class="text-gray-600 mb-4">Guide and support fellow students in their academic journey.</p>
<div class="flex items-center justify-between">
<span class="text-sm text-blue-600">$16.50/hour</span>
<button onclick="window.location.href='mentor.html'" class="px-4 py-2 bg-blue-800 text-white rounded-lg hover:bg-blue-700 transition">
View Details
</button>
</div>
</div>
</div>
<!-- Student Instructor Card -->
<div class="job-card">
<img src="./images/si.jpg" alt="Student Instructor" class="w-full h-48 object-cover">
<div class="p-6">
<h3 class="text-xl font-bold text-blue-800 mb-2">Student Instructor</h3>
<p class="text-gray-600 mb-4">Help other students succeed in their courses.</p>
<div class="flex items-center justify-between">
<span class="text-sm text-blue-600">$17.00/hour</span>
<button onclick="window.location.href='student-instructor.html'" class="px-4 py-2 bg-blue-800 text-white rounded-lg hover:bg-blue-700 transition">
View Details
</button>
</div>
</div>
</div>
</div>
<!-- Why Work on Campus Section -->
<section class="bg-white rounded-lg shadow-md p-8 mb-8">
<h2 class="text-2xl font-bold text-blue-800 mb-8 text-center">Why Work on Campus?</h2>
<div class="grid md:grid-cols-3 gap-8">
<!-- Flexible Schedule -->
<div class="benefit-card bg-blue-50 p-6 rounded-lg text-center">
<div class="text-4xl mb-4">⏰</div>
<h3 class="text-xl font-bold mb-2 text-blue-800">Flexible Schedule</h3>
<p class="text-gray-600">Work hours that fit perfectly around your class schedule</p>
</div>
<!-- Gain Experience -->
<div class="benefit-card bg-blue-50 p-6 rounded-lg text-center">
<div class="text-4xl mb-4">💡</div>
<h3 class="text-xl font-bold mb-2 text-blue-800">Gain Experience</h3>
<p class="text-gray-600">Develop professional skills for your future career</p>
</div>
<!-- Convenient Location -->
<div class="benefit-card bg-blue-50 p-6 rounded-lg text-center">
<div class="text-4xl mb-4">🎯</div>
<h3 class="text-xl font-bold mb-2 text-blue-800">Convenient Location</h3>
<p class="text-gray-600">No commute needed - work right on campus</p>
</div>
</div>
</section>
</main>
</body>
</html>