-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprojectn.css
More file actions
111 lines (103 loc) · 1.82 KB
/
Copy pathprojectn.css
File metadata and controls
111 lines (103 loc) · 1.82 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
/* Navbar fixed at top */
.navbar {
position: fixed;
top: 0;
left: 0;
width: 100%;
z-index: 1000; /* Keeps it above all content */
}
/* Adjust spacing so content isn't hidden behind navbar */
.frontpage,
.middlepage,
.lastpage {
min-height: 100vh;
width: 100%;
display: flex;
flex-direction: column;
justify-content: center;
padding: 5rem 2rem 2rem;
box-sizing: border-box;
}
.container-fluid{
background-color: #0A192F;
}
.navbar .navbar-brand {
color: white !important;
}
.navbar .fa-list {
color: white;
font-size: 1.3rem;/
}
.btn{
margin-top: 250px;
}
body{
background-color: #64FFDA;
}
/* Full Page Sections */
.frontpage,
.middlepage,
.lastpage {
min-height: 100vh; /* Full viewport height */
width: 100%; /* Full width */
display: flex;
flex-direction: column;
justify-content: center; /* Center content vertically */
padding: 2rem;
box-sizing: border-box;
}
/* Content & Box layout */
.content, .box {
display: flex;
gap: 1rem;
flex-wrap: wrap;
}
.content > div,
.box > div {
flex: 1 1 300px;
min-height: 150px;
background: #e9ecef;
border-radius: 8px;
}
/* Footer */
footer {
background: #f8f9fa;
text-align: center;
padding: 1rem;
margin-top: 2rem;
}
.footpanel {
font-weight: bold;
cursor: pointer;
margin-bottom: .5rem;
}
/* Responsive Tweaks */
@media (max-width: 576px) {
h2 {
font-size: 1.4rem;
}
h3 {
font-size: 1.2rem;
}
p {
font-size: 0.9rem;
}
.btn-lg {
font-size: 1rem;
padding: .5rem 1rem;
}
}
/* Container for the team image */
.teamimage {
width: 100%;
margin: 0;
padding: 0;
background-size: cover;
}
/* Make image responsive and full width */
.teamimage img {
width: 100%;
height: 400px;
object-fit: cover;
display: block;
}