Skip to content

Commit

Permalink
format updates
Browse files Browse the repository at this point in the history
  • Loading branch information
thePortus committed Oct 8, 2024
1 parent 67733db commit 6b4fcd6
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
3 changes: 1 addition & 2 deletions _sass/theme-settings.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,14 @@

/* ===== COLORS ===== */
// Change any of these to alter the look of the theme's colors

$site-frame-color: #EEEEEE; // color that surrounds the website on the left & right (irrelevant if header/footer/content width is set to 100%
$site-background-color: #FAFAFA; // base background color for the site's content
$site-header-color: rgba(100, 20, 20, 0.6); // background color of the site header
$site-header-mobile-dropdown-menu-color: #676767; // background color of (mobile only) dropdown nav menu
$site-title-color: #FAFAFA; // color of the site title / authors
$site-footer-color: #40150e; // background color of the site header
$site-accent-color: #8A100B; // accent color of site (used in the footer)
$site-header-image-url : '/assets/img/header.png'; // LEAVE BLANK unless you want an image as a header background. If you do, point to assets directory like /assets/img/put-your-filename-here.jpeg
$site-header-image-url: "#{$baseurl}/assets/img/header.png";; // LEAVE BLANK unless you want an image as a header background. If you do, point to assets directory like /assets/img/put-your-filename-here.jpeg

$link-base-color: #8A100B; // color of a regular link
$link-visited-color: #8A100B; // color of a regular link when visited
Expand Down
2 changes: 1 addition & 1 deletion _sass/theme.scss
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ footer a:hover {
.header-container {
max-width: $site-max-width;
color: $header-text-color !important;
background: linear-gradient($site-header-color, $site-header-color), url('/assets/img/header.png') no-repeat center center;
background: linear-gradient($site-header-color, $site-header-color), url($site-header-image-url) no-repeat center center;
background-size: 100%;
}

Expand Down
3 changes: 3 additions & 0 deletions assets/css/main.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,8 @@
@tailwind utilities;
@tailwind components;

$baseurl: "{{ site.baseurl }}";

@import "theme";
@import "custom-styles";

0 comments on commit 6b4fcd6

Please sign in to comment.