-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnext.css
More file actions
103 lines (100 loc) · 2.29 KB
/
next.css
File metadata and controls
103 lines (100 loc) · 2.29 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
body {
background-color: #ededed;
}
.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;
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 */
}
img {
border-radius: 50px;
margin: auto;
}
/* Example CSS for button alignment */
#authButtons {
display: flex;
flex-direction: column; /* Stack buttons vertically */
align-items: center; /* Center buttons horizontally */
}
@media (min-width: 768px) {
#authButtons {
flex-direction: row; /* Change to row layout for larger screens */
}
}
.navbar {
position: relative; /* Make navbar a positioned element */
}
.navbar-buttons {
position: absolute; /* Position relative to the navbar */
right: 20px; /* Adjust spacing from right */
top: 50%; /* Center vertically */
transform: translateY(-50%); /* Center alignment */
display: flex;
gap: 10px; /* Space between buttons */
}
@media (max-width: 768px) {
.navbar-buttons {
position: static; /* Reset for mobile view */
margin-top: 30px; /* Add margin on mobile */
justify-content: center; /* Center buttons in mobile view */
}
}