-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaboutus.css
More file actions
123 lines (103 loc) · 2.03 KB
/
aboutus.css
File metadata and controls
123 lines (103 loc) · 2.03 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
/* General Styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Arial, sans-serif;
}
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-image: url('images/blur-hospital.jpg');
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed; /* Ensures background remains fixed during scroll */
background-position: center;
display: flex;
flex-direction: column; /* Stack content vertically */
}
/* Navigation Bar */
.navbar {
display: flex;
justify-content: space-between;
align-items: center;
background-color:#005BB5;
padding: 1rem 2rem;
}
.nav-logo {
font-size: 1.8rem;
font-weight: bold;
color: #ecf0f1;
}
.nav-links {
list-style: none;
display: flex;
}
.nav-links li {
margin: 0 1rem;
}
.nav-links a {
text-decoration: none;
color: #ecf0f1;
font-size: 1rem;
}
.nav-links a:hover {
color: #1abc9c;
}
/* About Us Section */
.about-us {
text-align: center;
padding: 3rem 1rem;
}
.about-title {
font-size: 2.5rem;
color:#012382;
}
.about-subtitle {
margin: 0.5rem 0 2rem;
font-size: 1.2rem;
color: #005BB5;
}
.about-container {
display: flex;
justify-content: center;
gap: 2rem;
flex-wrap: wrap;
}
.about-box {
background-color: #060e31;
padding: 3rem;
border-radius: 10px;
width: 150%;
max-width: 500px;
text-align: left;
}
.box-title {
font-size: 1.5rem;
margin-bottom: 1rem;
color: #1abc9c;
}
.about-box p, .about-box ul {
font-size: 1rem;
color: #fff;
}
.about-box ul {
list-style: disc;
margin-left: 1rem;
}
.read-more {
display: inline-block;
margin-top: 1rem;
color: #3a8475;
text-decoration: none;
}
.read-more:hover {
text-decoration: underline;
}
footer {
background: #005BB5;
color: #fff;
padding: 10px 0;
text-align: center;
}