-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcategories.css
More file actions
108 lines (87 loc) · 1.75 KB
/
Copy pathcategories.css
File metadata and controls
108 lines (87 loc) · 1.75 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
104
105
106
107
108
/* General Reset */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
background-color: #8fbde3;
background: url('images/blur-hospital.jpg') no-repeat center center fixed;
background-size: cover;
color: #fff;
text-align: center;
padding: 20px;
}
header h1 {
font-size: 2.5rem;
color: rgb(41, 201, 187);
}
.subtitle {
font-size: 1.2rem;
font-weight: bold;
color: #183ebd;
margin: 10px 0;
}
.description {
font-size: 1rem;
color: #573eb4;
margin-bottom: 30px;
}
.specialties {
display: grid;
grid-template-columns: repeat(3, 1fr); /* Adjusts to three items per row */
gap: 20px;
justify-content: center;
}
.card {
background-color: #ffffff;
color: #1c5b85;
padding: 20px;
border-radius: 10px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
text-align: center;
transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}
.card img {
max-width: 100px;
height: auto;
margin-bottom: 10px;
}
.card p {
font-size: 1rem;
font-weight: bold;
margin-top: 10px;
color: #1c5b85;
}
/* Navigation Bar */
.navbar {
display: flex;
justify-content: space-between;
align-items: center;
background-color: #0d52b9;
/* Primary color */
color: white;
padding: 10px 20px;
}
.navbar .logo h1 {
font-size: 1.8rem;
font-weight: bold;
}
.menu-links {
display: flex;
list-style: none;
}
.menu-links li a {
color: white;
text-decoration: none;
padding: 15px 20px;
display: inline-block;
}
.menu-links li a:hover {
background-color: #004897;
}