From 40013704cf16f53468940a7d0160b40e8241a87c Mon Sep 17 00:00:00 2001 From: Miquel Sabaté Solà Date: Tue, 17 Sep 2024 07:16:43 +0200 Subject: Remove jekyll MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This is a complete rewrite of my blog to a vastly simpler form. That is, we only need HTML and a couple of build scripts to have something equivalent, without all the dependencies that jekyll brings. I have also taken the chance to remove a lot of stuff that was actually not needed. Signed-off-by: Miquel Sabaté Solà --- stylesheets/partials/minima.scss | 53 ---------------------------------------- 1 file changed, 53 deletions(-) delete mode 100644 stylesheets/partials/minima.scss (limited to 'stylesheets/partials/minima.scss') diff --git a/stylesheets/partials/minima.scss b/stylesheets/partials/minima.scss deleted file mode 100644 index 7ec1b1c..0000000 --- a/stylesheets/partials/minima.scss +++ /dev/null @@ -1,53 +0,0 @@ -@charset "utf-8"; - -// Define defaults for each variable. - -$base-font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !default; -$base-font-size: 16px !default; -$base-font-weight: 400 !default; -$small-font-size: $base-font-size * 0.875 !default; -$base-line-height: 1.5 !default; - -$spacing-unit: 30px !default; - -$text-color: #111 !default; -$background-color: #fdfdfd !default; -$brand-color: #2a7ae2 !default; - -$grey-color: #828282 !default; -$grey-color-light: lighten($grey-color, 40%) !default; -$grey-color-dark: darken($grey-color, 25%) !default; - -$table-text-align: left !default; - -// Width of the content area -$content-width: 1000px !default; - -$on-palm: 600px !default; -$on-laptop: 800px !default; - -// Use media queries like this: -// @include media-query($on-palm) { -// .wrapper { -// padding-right: $spacing-unit / 2; -// padding-left: $spacing-unit / 2; -// } -// } -@mixin media-query($device) { - @media screen and (max-width: $device) { - @content; - } -} - -@mixin relative-font-size($ratio) { - font-size: $base-font-size * $ratio; -} - -// Import partials. -@import - "../../node_modules/font-awesome/scss/font-awesome.scss", - "minima/base", - "minima/about", - "minima/layout", - "minima/syntax-highlighting" -; -- cgit v1.2.3