-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
69 lines (69 loc) · 1.39 KB
/
main.css
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
body {
background-color: #f8f9fa;
}
.navbar-brand {
font-weight: bold;
}
.hero-section {
background: url("https://www.pixelstalk.net/wp-content/uploads/images1/Medical-Wallpapers-HD-Free-download.jpg")
no-repeat center;
background-size: cover;
color: white;
height: 100vh;
width: 100vw;
padding: 100px 0;
text-align: center;
}
.doctor-card {
margin-bottom: 30px;
}
/* Custom CSS for Services Section */
.card {
transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover {
transform: scale(1.05);
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.card-title {
font-size: 1.25rem;
font-weight: bold;
}
.card-text {
font-size: 0.9rem;
}
.footer {
background-color: #343a40;
color: white;
padding: 20px 0;
}
.nav-link {
color: #007bff; /* Link color */
transition: color 0.3s; /* Smooth color transition */
}
.profile-container {
position: relative;
display: inline-block;
}
.profile-image {
width: 40px;
height: 40px;
cursor: pointer;
}
.profile-info {
display: none; /* Initially hidden */
position: absolute;
right: 0;
top: 50px;
background-color: white;
border: 1px solid #ccc;
padding: 10px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
z-index: 1000;
}
.nav-link:hover {
color: #0056b3; /* Darker color on hover */
}
.btn-primary {
margin-left: 10px; /* Spacing between links */
}