Skip to content

Commit

Permalink
Merge branch 'master' into newsletter_display_improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
bennyvasquez authored Sep 10, 2024
2 parents 5ff1485 + 605bb74 commit 4a944e0
Show file tree
Hide file tree
Showing 53 changed files with 8,662 additions and 56 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/publish-preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,9 @@ jobs:
- name: move redirects file into place
run: cp _redirects public/

- name: build search index
run: npx pagefind --site "public"

- name: Publish to Cloudflare Pages
uses: cloudflare/pages-action@v1
with:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,9 @@ jobs:
- name: move redirects file into place
run: cp _redirects public/

- name: build search index
run: npx pagefind --site "public"

- name: Publish to Cloudflare Pages
uses: cloudflare/pages-action@v1
with:
Expand Down
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
public/
static/pagefind/
.hugo_build.lock
.DS_Store
.DS_Store
2,078 changes: 2,078 additions & 0 deletions assets/css/bootstrap-icons.css

Large diffs are not rendered by default.

37 changes: 29 additions & 8 deletions assets/css/bundle.css
Original file line number Diff line number Diff line change
Expand Up @@ -43,32 +43,38 @@ padding-right: 15px !important;
padding-right: 15px !important;
padding-left: 15px !important;
}
.al-page-index .al-hero-cta-primary {

.al-cta-blue {
background: #24c2ff;
color: #222222;
margin:10px 10px 10px 0;
}
.al-page-index .al-hero-cta-primary:hover {

.al-cta-blue:hover {
background: #0bbbff;
}
.al-page-index .al-hero-cta-secondary {

.al-cta-green {
background: #86da2f;
color: #222222;
margin: 10px;
}
.al-page-index .al-hero-cta-secondary:hover {

.al-cta-green:hover {
background: #79cb24;
}
.al-page-index .al-hero-cta-tertiary {

.al-cta-yellow {
background: #ffcb12;
color: #222222;
margin: 10px;
}
.al-page-index .al-hero-cta-tertiary img {

.al-cta-yellow img {
display: inline;
height: 1em;
}
.al-page-index .al-hero-cta-tertiary:hover {
.al-cta-yellow:hover {
background: #f8c100;
}
.al-page-index .al-index-feature-container, .al-commercial-supporter-list {
Expand All @@ -84,6 +90,9 @@ padding-right: 15px !important;
padding-left: 22px;
}

.al-dark-background {
background: #0e3b5c!important;
}
.al-page-index .al-index-community-container {
background: #0e3b5c;
}
Expand Down Expand Up @@ -633,10 +642,13 @@ outline: none !important;
.al-primary-navbar .dropdown-menu-dark .dropdown-divider {
border-color: #264154;
}

.al-primary-navbar .al-language-switch img {
height: 24px;
}
/* this counters the default padding in menu items */
.dropdown-nested {
padding: .25rem -1.5rem !important;
}
.al-primary-navbar .al-language-link {
text-transform: capitalize;
color: aliceblue;
Expand Down Expand Up @@ -768,6 +780,10 @@ pre > code {
font-size: 46px !important;
line-height: 47px
}
.display-4{
font-size: 1rem !important;
line-height: 1rem;
}
.lead {
font-size: 1.25rem !important;
font-weight: 400 !important;
Expand Down Expand Up @@ -1063,4 +1079,9 @@ a {
.newsletter-img {
float:left;
}

.navbar-nav .dropdown-menu ul {
padding:0;
margin:0 0 0 1rem;
list-style-type: none;
}
2 changes: 2 additions & 0 deletions assets/scss/blog.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
@import "./boostrap-icons.css";

.al-page-blog-index {
margin: auto;
max-width: 680px;
Expand Down
1 change: 1 addition & 0 deletions assets/scss/blog.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
@import "./variables";
@import "./functions";
@import "./boostrap-icons.scss";


.al-page-blog-index {
Expand Down
Loading

0 comments on commit 4a944e0

Please sign in to comment.