-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnursing_categories.php
206 lines (181 loc) · 5.41 KB
/
nursing_categories.php
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css">
<link rel="stylesheet" href="styles.css"> <!-- Create a separate CSS file for styling -->
<style>
body {
background-image: url('nurse.jpeg'); /* Add your background image path */
background-size: cover;
background-repeat: no-repeat;
/*filter: blur(5px); /* Apply blur effect to the background image */
}
.navbar-nav smooth-scroll {
scroll-behavior: smooth;
}
.logo-img {
position: absolute;
top: 5px;
left: 150px;
width: 50px;
height: 50px;
}
.transparent-box {
background: rgba(0, 0, 0, 0.686); /* White transparent box */
position: absolute;
top: 55%;
left: 10%;
transform: translate(-50%, -50%);
padding: 10px;
height:auto;
width: 400px;
border-radius: 10px;
text-align: center;
box-shadow: 20px;
color: #ffffff;
}
.category {
/*background-color: rgba(255, 255, 255, 0.5); /* Background color for the category boxes */
/*padding: 10px;
margin: 10px;
/*border-radius: 5px;*/
text-align: center;
cursor: pointer;
color: #f1f0f0;
font-size:large;
}
.category:hover {
/*background-color: rgba(0, 0, 0, 0.7); /* Change background color on hover */
color: rgb(255, 3, 3);
}
/* Style for the navigation bar */
.navbar {
background-color: black;
overflow: hidden;
color: white;
}
.logo-img {
width: 50px;
height: 50px;
margin-right: 10px;
}
.navbar-brand {
display: flex;
align-items: center;
}
.navbar .logo {
float: left;
}
.navbar .nav-links {
float: right;
}
.navbar .nav-links a {
display: inline-block;
text-align: center;
padding: 14px 16px;
text-decoration: none;
color: white;
}
.navbar .nav-links a:hover {
background-color: #333; /* Darker background on hover */
}
.navbar .we-help {
float: right;
}
.content-container {
position: relative;
}
.navbar-nav smooth-scroll {
scroll-behavior: smooth;
}
.logo-img {
position: absolute;
top: 5px;
left: 150px;
width: 50px;
height: 50px;
}
.transparent-box {
background: rgba(0, 0, 0, 0.686); /* White transparent box */
position: absolute;
top: 150px; /* Adjust this value as needed */
left: 20%; /* Add 33% padding to the left */
transform: translateX(-50%);
padding: 10px;
height: auto;
width: 400px;
border-radius: 10px;
text-align: center;
box-shadow: 20px;
color: #ffffff;
z-index: 1; /* Set a higher z-index to bring it to the front */
}
.category {
cursor: pointer;
color: #f1f0f0;
font-size: large;
}
.category:hover {
color: rgb(0, 0, 0);
}
.footer {
background-color: black;
color: white;
text-align: center;
padding: 20px;
position: fixed;
bottom: 0;
width: 100%;
z-index: 2; /* Set a higher z-index to bring it to the front */
}
h3{
color:white;
}
.navbar-brand{
margin-left: 200px;
}
</style>
<title> Cooking Services</title>
</head>
<body>
<div class="navbar">
<a class="navbar-brand" href="#">
<img src="sitelogo.png" alt="BookMyBai" class="logo-img">
<span class="we-help">WeHelp</span>
</a>
<div class="nav-links">
<a href="index.php">Home</a>
<a href="maid-hiring.php">Find a Maid</a>
<a href="about.php">About</a>
<a href="contact.php">Contact</a>
<a href="admin/login.php">Admin</a>
<a href="maid_service.php">Services</a>
</div>
</div>
<div class="transparent-box">
<h3>Types of Nurses</h3>
<hr>
<!-- Clickable Categories -->
<a href="#" class="category">CHIEF NURSING OFFICER</a>
<hr>
<a href="#" class="category">NURSING SUPDT</a>
<hr>
<a href="#" class="category">DY. NURSING SUPDT</a>
<hr>
<a href="#" class="category">ASSTT. NURSING SUPDT</a>
<hr>
<a href="#" class="category">WARD SISTER-CLINICAL SUPERVISOR</a>
<hr>
<a href="#" class="category">STAFF NUIRSE</a>
<hr>
<a href="#" class="category">STUDENT NURSE</a>
<hr>
<a href="elder_detail.php" class="btn btn-primary" >Find a Nurse</a>
</div>
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"></script>
</body>
</html>