-
Notifications
You must be signed in to change notification settings - Fork 236
Expand file tree
/
Copy pathuser.css
More file actions
46 lines (40 loc) · 761 Bytes
/
Copy pathuser.css
File metadata and controls
46 lines (40 loc) · 761 Bytes
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
/* user-list.css */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #5af9f4;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}
h1 {
text-align: center;
color: #333;
}
#hospitalList {
margin-bottom: 20px;
}
.hospital-item {
background-color: #fff;
border-radius: 8px;
box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
padding: 15px;
margin-bottom: 10px;
}
button {
display: block;
margin: 0 auto;
padding: 10px 20px;
font-size: 16px;
color: #fff;
background-color: #007BFF;
border: none;
border-radius: 5px;
cursor: pointer;
}
button:hover {
background-color: #0056b3;
}