Skip to content

Commit

Permalink
Merge pull request #46 from 35C4n0r/fix-footer-ui
Browse files Browse the repository at this point in the history
feat: add a new more descriptive footer
  • Loading branch information
leecalcote authored Nov 14, 2023
2 parents ad91dfa + 6635655 commit ccba72b
Show file tree
Hide file tree
Showing 14 changed files with 763 additions and 36 deletions.
1 change: 1 addition & 0 deletions assets/icons/discuss.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions assets/icons/docker.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions assets/icons/envelope.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions assets/icons/github.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions assets/icons/linkedin.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions assets/icons/slack.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions assets/icons/twitter.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions assets/icons/youtube.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
27 changes: 26 additions & 1 deletion assets/scss/_content_project.scss
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
@import 'footer';

//
// Style Markdown content
//
Expand Down Expand Up @@ -109,4 +111,27 @@ h1, h2, h3, h4, h5, h6 {
@include media-breakpoint-up(sm) {
font-size: 3rem;
}
}
}

/* width */
::-webkit-scrollbar {
width: 8px;
background-color: transparent;
}

/* Track */
::-webkit-scrollbar-track {
border-radius: 10px;
background-color: transparent;
}

/* Handle */
::-webkit-scrollbar-thumb {
background: $primary;
border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
background: $secondary;
}
4 changes: 4 additions & 0 deletions assets/scss/_styles_project.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
@import 'image-modal_project.scss';
@import 'elements_project.scss';

:root, :host{
overflow-y: scroll;
overflow-x: hidden;
}

// Global Navigation Bar
.td-navbar{
Expand Down
3 changes: 2 additions & 1 deletion assets/scss/_variables_project.scss
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ $code-color: shade-color($secondary, 40%) !default;
// $bg-gradient-dark: linear-gradient(250deg, #477e96 0%, #00b39f 35%, rgb(60, 73, 79) 100%);

// Body
$body-color: #ccc;
$body-color: #CCCCCC;
$body-bg: #010101;
// $bs-body-bg: $dark;
// $bs-card-cap-bg: $dark;
Expand Down Expand Up @@ -67,6 +67,7 @@ $web-font-path: "https://fonts.googleapis.com/css?family=#{$google_font_family}&
$font-awesome-font-name: "Font Awesome 6 Free" !default;

$td-fonts-serif: "Qanelas Soft", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
$font-qanelas: "Qanelas Soft", sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";

@if $td-enable-google-fonts {
$td-fonts-serif: prepend($td-fonts-serif, "#{$google_font_name}");
Expand Down
Loading

0 comments on commit ccba72b

Please sign in to comment.