php, css - secondary page updates

This commit is contained in:
2025-02-27 13:56:56 +00:00
parent 50ac909260
commit 1d0fe5eebd
3 changed files with 66 additions and 3 deletions

View File

@@ -135,6 +135,33 @@
@extend .btn-lg;
}
.is-style-styled-list {
padding-left: 60px;
counter-reset: item;
list-style-position: outside;
li {
margin-bottom: 40px;
padding-left: 50px;
position: relative;
display: block;
line-height: 1.1;
}
li:before {
position: absolute;
// padding-top: 40px;
margin-left: -90px;
padding-left: 30px;
margin-right: 30px;
font-size: 50px;
font-weight: bold;
content: counter(item);
counter-increment: item;
color: red;
}
}
/* Page */
.featured-full-width-img {
height: 400px;
@@ -144,12 +171,27 @@
height: 100%;
}
#secondary {
display: none;
}
#sidebar {
padding-left: 8rem;
padding-right: 2rem;
font-size: 24px;
position: sticky;
a:not(.active) {
color: black;
}
li {
padding: 0.25rem 0;
padding: 0.5rem 0;
}
}
}
/* CUSTOM BLOCK MOBILE SUPPORT */
@include media-breakpoint-up(lg) {
#secondary {
display: block;
}
}

View File

@@ -4,6 +4,8 @@ $primary: #e30613;
$secondary: #cccccc;
$tertiary: #f5f5f5;
$font-size-base: 1.3rem;
$navbar-light-color: white;
$navbar-light-hover-color: darken(white, 10%);