Add 4.4 banner to the main page.

This commit is contained in:
Adam Scott
2025-03-03 14:49:20 -05:00
parent 4be299693c
commit 0944a6e4c0
3 changed files with 52 additions and 1 deletions

View File

@@ -23,6 +23,37 @@ header {
}
}
header .container {
box-sizing: border-box;
}
header .banner-container {
width: 100%;
height: min-content;
font-family: "Montserrat", sans-serif;
}
header .banner-container .banner {
width: 100%;
height: 100%;
margin: 0.25em 0;
text-align: center;
font-weight: 400;
color: black;
gap: 0.25em;
}
header .banner-container .banner .banner-text {
display: inline-block;
margin: 0 0.25em;
}
header .banner-container .banner a {
font-weight: 600;
color: black;
text-decoration-color: black;
}
#nav, #nav_head {
.fund {
margin-right: 0px;

View File

@@ -394,6 +394,12 @@ main {
.flex.justify-space-between {
justify-content: space-between;
}
.flex.column {
flex-direction: column;
}
.flex.row {
flex-direction: row;
}
.flex.eqsize > * {
flex: 1;