Skip to content

Commit

Permalink
Fix remaining CSS issues
Browse files Browse the repository at this point in the history
  • Loading branch information
werthen committed Sep 26, 2024
1 parent 60f2223 commit fab43ba
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 10 deletions.
3 changes: 1 addition & 2 deletions content/assets/stylesheets/includes/about.scss
Original file line number Diff line number Diff line change
Expand Up @@ -125,10 +125,9 @@ table.board-table {
}

.contact-text-link {
color: $text;
color: var(--bulma-text);
border-bottom: 1px solid $secondary;
margin-top: 7px;
//font-size: 1.5em;
}

.contact-text-link:hover {
Expand Down
4 changes: 0 additions & 4 deletions content/assets/stylesheets/includes/blogpost.scss
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,6 @@

.title {
font-weight: bolder;

@include tablet {
font-size: 4rem;
}
}

.subtitle {
Expand Down
2 changes: 1 addition & 1 deletion content/assets/stylesheets/includes/eventpage.scss
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

&.light-background {
background-color: rgba(0, 0, 0, 0.75);
color: var(--bulma-background);
color: var(--bulma-text-40-invert);
}
}

Expand Down
2 changes: 0 additions & 2 deletions content/assets/stylesheets/includes/general.scss
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,6 @@ pre .line-numbers {
margin-bottom: 10px;

transition: all 0.15s ease;

box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
}

a.box:hover {
Expand Down
4 changes: 4 additions & 0 deletions content/assets/stylesheets/includes/navbar.scss
Original file line number Diff line number Diff line change
Expand Up @@ -71,3 +71,7 @@
}
}
}

.hero-head #navbar .navbar-item {
color: var(--bulma-text-30-invert);
}
6 changes: 5 additions & 1 deletion content/assets/stylesheets/main.scss
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,13 @@ $timeline-content-padding: 0.55em 0 0 2em;

@use "bulma/sass" with (
$primary: $zeus-orange,
$link: $zeus-orange
$link: $zeus-orange,
);

a, .tabs li.is-active a {
color: $link;
border-bottom-color: $link;
}

// @import "bulma/bulma";
@import "bulma/sass/utilities/mixins";
Expand Down

0 comments on commit fab43ba

Please sign in to comment.