forked from Anishkagupta04/RAPIDOC-HEALTHCARE-WEBSITE-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rateus.css
219 lines (187 loc) · 3.97 KB
/
rateus.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
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
/* General Styles */
body {
font-family: "Open Sans", sans-serif;
color: #fff;
background-color: #000;
margin: 0;
padding: 0;
}
a {
color: #ffffff;
text-decoration: none;
}
a:hover {
color: #55a5ea;
text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: "Raleway", sans-serif;
}
/* Header Styles */
.header_container {
background-color: #022a2d;
opacity: 0.9;
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
height: 85px;
margin: auto;
margin-top: 15px; /* Adjust this value to move the header down */
position: relative; /* Added for z-index stacking */
z-index: 999; /* Ensure header is above other content */
}
.img {
flex: 0 0 auto;
margin-left: 20px;
}
#rd-logo {
width: 90px; /* Increased logo size */
height: auto;
}
/* Navigation Menu Styles */
.nav_menu {
margin-right: 20px;
}
.nav_link {
list-style: none;
padding: 0;
display: flex;
align-items: center;
}
.nav_link li {
margin-right: 10px; /* Add space between items */
}
.nav_link li a {
display: flex;
align-items: center;
padding: 3px 10px;
color: white;
text-decoration: none; /* Remove underline from links */
transition: all 0.3s ease 0s;
white-space: nowrap; /* Prevent text wrapping */
}
.nav_link li a:hover {
color: #55a5ea;
}
/* Find a Doctor Button Styles */
.find-doctor {
display: flex;
align-items: center;
margin-left: 10px; /* Adjust margin as needed */
margin-top: -10px; /* Move the button upwards by adjusting this negative margin */
}
.find-doctor button {
background-color: #4bb6b7;
color: white;
padding: 12px 24px;
border: none;
border-radius: 4px;
cursor: pointer;
transition: background-color 0.3s;
font-size: 1rem;
margin-right: 10px; /* Optional: Add margin between button and other elements */
}
.find-doctor button:hover {
background-color: #3aa5a6;
}
/* Container Styles */
.container {
background-color: #022a2d;
padding: 20px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
text-align: center;
max-width: 500px; /* Adjusted max-width for container */
margin: 85px auto 20px; /* Adjusted top margin to accommodate reduced header height */
transition: box-shadow 0.3s, transform 0.3s;
}
.container:hover {
box-shadow: 0 0 20px rgba(0, 0, 0, 0.2), 0 0 30px rgba(255, 255, 255, 0.6);
transform: scale(1.05);
}
.container h2 {
color: white;
font-size: 2rem;
margin-bottom: 20px;
}
.rating {
display: flex;
justify-content: center;
margin-bottom: 20px;
}
.rating .emoji {
cursor: pointer;
font-size: 40px; /* Increased emoji size */
transition: transform 0.3s, opacity 0.3s;
opacity: 0.7;
}
.rating .emoji.selected {
opacity: 1;
transform: scale(1.2); /* Increased size on selection */
}
.rating .emoji:hover {
opacity: 1;
}
textarea {
width: calc(100% - 40px);
height: 120px;
margin: 20px auto;
padding: 10px;
border: 1px solid #ccc;
border-radius: 4px;
transition: box-shadow 0.3s, transform 0.3s;
background-color: #fff;
color: #333;
resize: none;
}
textarea:hover {
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
transform: scale(1.02);
}
button {
background-color: #4bb6b7;
color: white;
padding: 12px 24px;
border: none;
border-radius: 4px;
cursor: pointer;
transition: background-color 0.3s;
font-size: 1rem;
}
button:hover {
background-color: #3aa5a6;
}
/* Mobile Navigation Styles */
.mobile-nav-toggle {
color: #fff;
font-size: 28px;
cursor: pointer;
display: none;
line-height: 0;
transition: 0.5s;
}
.mobile-nav-toggle.bi-x {
color: #fff;
}
@media (max-width: 991px) {
/* Adjustments for mobile view */
.nav_menu {
display: flex;
flex-direction: column;
align-items: center;
position: relative;
z-index: 999; /* Ensure it's above the mobile nav toggle */
}
.nav_link {
margin-top: 20px; /* Adjust spacing between main links and "Find a Doctor" */
}
.find-doctor {
margin-top: 20px; /* Increase top margin for spacing */
}
}