Make native APEX 2023 banner

- Drop rasters for SVG + HTML/CSS
- Include Japanese translation for the banner
This commit is contained in:
mDuo13
2023-06-22 16:44:21 -07:00
parent 8708c1fcea
commit b3dd87579a
20 changed files with 1227 additions and 221 deletions

View File

@@ -1,30 +1,3 @@
.banner-container {
display: block;
width: 100%;
position: relative; // Or use 'static' if you don't need to position child elements relatively
#apex-banner {
width: 100%;
height: auto;
@include media-breakpoint-only(xs) {
content: url(../img/apex-banner-sm.png);
}
@include media-breakpoint-only(sm) {
content: url(../img/apex-banner-sm.png);
}
@include media-breakpoint-only(md) {
content: url(../img/apex-banner-md.png);
}
@include media-breakpoint-up(lg) {
content: url(../img/apex-banner.png);
max-height: 48px;
}
}
}
/* Top navigation ----------------------------------------------------------- */
.top-nav {
background-color: $gray-900;