-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
60 lines (57 loc) · 1.21 KB
/
styles.css
File metadata and controls
60 lines (57 loc) · 1.21 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
/* Navbar active link styling */
.navbar .nav-link {
color: #f8e2e2;
transition: color 0.3s ease, border-bottom 0.3s ease;
}
.navbar .nav-link:hover {
color: #fcbebe;
}
/* Active link (ScrollSpy) */
.navbar .nav-link.active {
color: #380202; /* Bootstrap primary color */
font-weight: 600;
border-bottom: 2px solid #41031a;
}
/* Hero Section */
.hero {
background: url('./Images/akpu1.jpg') center/cover no-repeat;
height: 70vh;
display: flex;
align-items: center;
justify-content: center;
color: rgb(231, 229, 229);
text-align: center;
position: relative;
}
.hero::after {
content: "";
position: absolute;
top:0;
left:0;
width:100%;
height:100%;
background-color: rgba(201, 209, 203, 0.5);
}
.hero-content {
position: relative;
z-index: 1;
}
.menu-item img {
width: 100%;
height: 200px;
object-fit: cover;
}
.about-img {
width: 100%;
height: 100%;
object-fit: cover;
}
footer {
background-color: #333;
color: rgb(173, 6, 6);
padding: 20px 0;
}
footer a {
color: rgb(160, 24, 24);
margin: 0 10px;
}