-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathac.css
More file actions
201 lines (169 loc) · 4.27 KB
/
ac.css
File metadata and controls
201 lines (169 loc) · 4.27 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
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
/* Global Styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Bree', sans-serif;
}
body {
background-image: url('img/ab.jpg');
background-position: center;
background-size: cover;
height: 100vh;
width: 100vw;
color: #212529; /* Dark text color */
}
/* Navbar Styles */
.custom-navbar {
padding: 10px 15px; /* Adjust padding */
backdrop-filter: blur(40px); /* Intense blur effect */
}
.navbar-brand img {
height: 80px; /* Adjust logo size */
width: auto;
}
.navbar .container-fluid {
display: flex;
justify-content: space-between; /* Space between logo and nav items */
align-items: center; /* Center items vertically */
}
.navbar-nav {
display: flex;
justify-content: center; /* Center nav items */
margin: 0; /* Remove default margin */
}
.navbar-nav .nav-link {
font-size: 20px; /* Adjust font size */
margin: 0 10px; /* Adjust spacing between links */
color: aliceblue; /* Light text color */
}
.navbar-toggler {
padding: 10px 20px; /* Ensure padding is set */
font-size: 1.25rem; /* Increase font size for visibility */
line-height: 1.2; /* Adjust line height */
background-color: #fff; /* White background */
border-radius: 5px; /* Rounded corners */
transition: background-color 0.3s ease; /* Smooth transition */
}
.navbar-toggler:hover {
background-color: #f1312a; /* Darker background on hover */
}
/* Button Styles */
.btn-primary {
background-color: rgba(206, 47, 47, 0.936); /* Primary button color */
border: none;
}
.btn-primary:hover {
background-color: rgb(159, 138, 138); /* Hover color */
}
/* Hero Section */
.hero-section {
background: url('img/hero-bg.jpg') center center/cover no-repeat; /* Background image for hero section */
color: #f8f9fa; /* Light text color */
text-align: center;
padding: 100px 20px;
}
.hero-content h1 {
font-size: 3rem;
margin-bottom: 20px;
}
.hero-content p {
font-size: 1.25rem;
max-width: 700px;
margin: 0 auto;
}
/* Introduction Section */
.intro-section {
background-color: #f8f9fa; /* Light background color */
padding: 60px 20px;
text-align: center;
}
.intro-section h2 {
font-size: 2rem;
margin-bottom: 20px;
}
.intro-section p {
font-size: 1rem;
max-width: 800px;
margin: 0 auto;
}
/* Featured Programs Section */
.featured-programs {
padding: 60px 20px;
}
.program-card {
background: #fff;
border-radius: 8px;
padding: 20px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
text-align: center;
margin-bottom: 20px;
}
.program-card h3 {
font-size: 1.5rem;
margin-bottom: 10px;
}
.program-card p {
font-size: 1rem;
margin-bottom: 20px;
}
.program-card .btn-primary {
background-color: rgba(206, 47, 47, 0.936); /* Primary button color */
border: none;
}
.program-card .btn-primary:hover {
background-color: rgb(159, 138, 138); /* Hover color */
}
.row{
display: flex;
justify-content: center;
align-items: center;
}
/* Footer Styles */
footer {
background-color: #333; /* Dark background color */
color: #f8f9fa; /* Light text color */
display: flex;
justify-content: center;
align-items: center;
padding: 20px;
height: auto;
text-align: center;
}
/* Media Queries for responsive design */
@media (max-width: 768px) {
.navbar {
padding: 8px 10px; /* Adjust padding for smaller screens */
}
.navbar-brand img {
height: 60px; /* Smaller logo size for mobile */
}
.navbar-nav .nav-link {
font-size: 14px; /* Smaller font size for smaller screens */
margin: 0 5px; /* Adjust spacing for smaller screens */
}
.hero-content h1 {
font-size: 2.5rem;
}
.hero-content p {
font-size: 1rem;
}
}
@media (max-width: 480px) {
.navbar {
padding: 5px 8px; /* Further adjust padding for very small screens */
}
.navbar-brand img {
height: 50px; /* Even smaller logo size for very small screens */
}
.navbar-nav .nav-link {
font-size: 12px; /* Even smaller font size for very small screens */
margin: 0 3px; /* Adjust spacing */
}
.hero-content h1 {
font-size: 2rem;
}
.hero-content p {
font-size: 0.875rem;
}
}