From 83378509ecb0578a0c0e811a31985379cee3969f Mon Sep 17 00:00:00 2001 From: Miquel Sabaté Solà Date: Mon, 10 Apr 2023 18:39:05 +0200 Subject: Updated 'about' page MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Setting up a more formal and up-to-date page with more relevant information. Signed-off-by: Miquel Sabaté Solà --- stylesheets/partials/minima.scss | 2 +- stylesheets/partials/minima/_about.scss | 50 +++++++++++++++++++++++++++++++++ stylesheets/partials/minima/_cv.scss | 50 --------------------------------- 3 files changed, 51 insertions(+), 51 deletions(-) create mode 100644 stylesheets/partials/minima/_about.scss delete mode 100644 stylesheets/partials/minima/_cv.scss (limited to 'stylesheets') diff --git a/stylesheets/partials/minima.scss b/stylesheets/partials/minima.scss index a03b80d..7ec1b1c 100644 --- a/stylesheets/partials/minima.scss +++ b/stylesheets/partials/minima.scss @@ -47,7 +47,7 @@ $on-laptop: 800px !default; @import "../../node_modules/font-awesome/scss/font-awesome.scss", "minima/base", - "minima/cv", + "minima/about", "minima/layout", "minima/syntax-highlighting" ; diff --git a/stylesheets/partials/minima/_about.scss b/stylesheets/partials/minima/_about.scss new file mode 100644 index 0000000..c6edf23 --- /dev/null +++ b/stylesheets/partials/minima/_about.scss @@ -0,0 +1,50 @@ +#about, #cv { + h1 { + margin-bottom: 0px; + } + + h2 { + margin-top: 30px; + } + + .info { + margin-bottom: 30px; + } + + a { + color: $text-color; + text-decoration: underline; + &:hover { + text-decoration: none; + } + } + + .info a { + text-decoration: none; + &:hover { + text-decoration: underline; + } + } + + p { + position: relative; + margin-right: 0; + } + + code { + font: normal normal; + color: $text-color; + background-color: $background-color; + border: 0px; + } + + p code { + position: absolute; + text-align: right; + right: 0%; + } + + .end { + margin-top: 50px; + } +} diff --git a/stylesheets/partials/minima/_cv.scss b/stylesheets/partials/minima/_cv.scss deleted file mode 100644 index 5e08134..0000000 --- a/stylesheets/partials/minima/_cv.scss +++ /dev/null @@ -1,50 +0,0 @@ -#cv { - h1 { - margin-bottom: 0px; - } - - h2 { - margin-top: 30px; - } - - .info { - margin-bottom: 30px; - } - - a { - color: $text-color; - text-decoration: underline; - &:hover { - text-decoration: none; - } - } - - .info a { - text-decoration: none; - &:hover { - text-decoration: underline; - } - } - - p { - position: relative; - margin-right: 0; - } - - code { - font: normal normal; - color: $text-color; - background-color: $background-color; - border: 0px; - } - - p code { - position: absolute; - text-align: right; - right: 0%; - } - - .end { - margin-top: 50px; - } -} -- cgit v1.2.3