diff options
| author | Miquel Sabaté Solà <msabate@suse.com> | 2021-07-05 21:56:06 +0200 |
|---|---|---|
| committer | Miquel Sabaté Solà <msabate@suse.com> | 2021-07-05 21:56:06 +0200 |
| commit | 261b5e3e80d1e75fdcd042675154a82c2ce469fb (patch) | |
| tree | 33eb31fd719780db67cfac4979d3f699b7525315 /stylesheets/partials | |
| parent | 44756f51c80c1cb104de808afa24ea5027dd1d41 (diff) | |
| download | jo.mssola.com-261b5e3e80d1e75fdcd042675154a82c2ce469fb.tar.gz jo.mssola.com-261b5e3e80d1e75fdcd042675154a82c2ce469fb.zip | |
Added CV section
Signed-off-by: Miquel Sabaté Solà <msabate@suse.com>
Diffstat (limited to 'stylesheets/partials')
| -rw-r--r-- | stylesheets/partials/minima.scss | 1 | ||||
| -rw-r--r-- | stylesheets/partials/minima/_cv.scss | 50 |
2 files changed, 51 insertions, 0 deletions
diff --git a/stylesheets/partials/minima.scss b/stylesheets/partials/minima.scss index 346d88d..a03b80d 100644 --- a/stylesheets/partials/minima.scss +++ b/stylesheets/partials/minima.scss @@ -47,6 +47,7 @@ $on-laptop: 800px !default; @import "../../node_modules/font-awesome/scss/font-awesome.scss", "minima/base", + "minima/cv", "minima/layout", "minima/syntax-highlighting" ; diff --git a/stylesheets/partials/minima/_cv.scss b/stylesheets/partials/minima/_cv.scss new file mode 100644 index 0000000..5e08134 --- /dev/null +++ b/stylesheets/partials/minima/_cv.scss @@ -0,0 +1,50 @@ +#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; + } +} |
