From b277b6012f631173dc48291916a092ed6a28903d Mon Sep 17 00:00:00 2001 From: gabrielgio Date: Tue, 19 Apr 2022 19:11:39 +0200 Subject: ref: Make site faster Some changes to make the site load faster: * remove custom font * romove some unused scss * remove unused scss include * embed css into the header * remove FA icons --- themes/flamingo/assets/scss/_projects.scss | 63 ------------------------------ 1 file changed, 63 deletions(-) delete mode 100644 themes/flamingo/assets/scss/_projects.scss (limited to 'themes/flamingo/assets/scss/_projects.scss') diff --git a/themes/flamingo/assets/scss/_projects.scss b/themes/flamingo/assets/scss/_projects.scss deleted file mode 100644 index 2e1df13..0000000 --- a/themes/flamingo/assets/scss/_projects.scss +++ /dev/null @@ -1,63 +0,0 @@ -.project-board { - margin-top: calc(#{$global-font-size} * 2); - display: grid; - grid-template-columns: 1fr; - grid-template-rows: auto; - grid-gap: 20px; - max-width: $layout-max-width; -} - -.card { - min-height: 100%; - position: relative; - display: flex; - flex-direction: column; - text-decoration: none; - $border-width: 3px; - border-radius: $border-width; - border: 1px solid $post-link-color; -} - -.card article { - padding: 20px; -} - -.card h4 { - font-size: 20px; - margin: 0; -} - -.card p { - color: $subscript-color; - line-height: 1.4; -} - -.custom-card-footer { - display: flex; - justify-content: flex-end; -} - -.custom-button { - font-size: $global-font-size; - font-weight: 400; - margin: 0 calc(#{$global-font-size} * 0.5); - padding: calc(#{$global-font-size} * 0.2) calc(#{$global-font-size} * 0.5); - $border-width: 3px; - border-radius: $border-width; - border: 1px solid $subscript-color; - color: $post-link-color; - background-color: transparent; - cursor: pointer; - //transition: border .3s; - transition: color .3s; -} - -.custom-button-disabled { - cursor: no-drop; -} - -.custom-button:hover { - border: 1px solid $post-link-color; - //background-color: $post-link-color; - color: $post-title-color; -} -- cgit v1.2.3