-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
84 lines (72 loc) · 1.63 KB
/
Copy pathstyles.css
File metadata and controls
84 lines (72 loc) · 1.63 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
/* css styles */
.navbar img {
height: 100%;
vertical-align: middle;
}
.navbar-brand {
font-weight: bold;
display: none !important;
}
/* Example selector – may need adjustment for your theme */
.navbar .fa-search, .navbar .bi-search {
color: white !important;
}
/* Header banner styling: white, light gray, and light blue */
.header-banner {
background: linear-gradient(90deg, #ffffff 0%, #f5f6fa 50%, #e3f2fd 100%);
color: #003366; /* dark blue for contrast */
padding: 2rem 0;
border-bottom: 1px solid #e3f2fd;
}
/* Example: If using a navbar as header banner */
.navbar {
background: linear-gradient(90deg, #ffffff 0%, #f5f6fa 50%, #003366 100%);
color: #003366;
border-bottom: 1px solid #e3f2fd;
}
@media (max-width: 768px) {
.navbar .nav-link,
.navbar .navbar-brand,
.navbar .navbar-toggler-icon,
.navbar .bi {
color: #003366 !important;
}
}
/* Make navbar-brand text visible on light background */
.navbar-brand {
font-weight: bold;
color: #003366 !important;
}
/* Left-side nav links (dark navy) */
.navbar-nav.me-auto .nav-link {
color: #003366 !important; /* midnight blue */
}
/* Right-side nav links (white) */
.navbar-nav.ms-auto .nav-link {
color: #ffffff !important; /* white */
}
.lead {
font-size: 1.1rem;
margin-bottom: 1.5rem;
}
/* Ensure good spacing for content */
.content {
margin-top: 1rem;
}
/* Style for publication lists */
ol li {
margin-bottom: 0.5rem;
}
/* Responsive images */
img {
max-width: 100%;
height: auto;
}
/* Footer styling */
.footer {
margin-top: 3rem;
padding-top: 2rem;
border-top: 1px solid #e9ecef;
color: #6c757d;
font-size: 0.9rem;
}