diff options
Diffstat (limited to 'css/site.css')
-rw-r--r-- | css/site.css | 78 |
1 files changed, 62 insertions, 16 deletions
diff --git a/css/site.css b/css/site.css index 7e9bc24..c6f601a 100644 --- a/css/site.css +++ b/css/site.css @@ -1,14 +1,22 @@ -/* ************************************************************************** */ -/* */ -/* File : site.css /_________/ */ -/* Authors : Joe | */ -/* Date : 06/2020 | */ -/* Info : Style | */ -/* / | */ -/* \ / */ -/* \_____/ */ -/* */ -/* ************************************************************************** */ +/* + * ======================== + * ===== =============== + * ====== ================ + * ====== ================ + * ====== ==== ==== == + * ====== === == = = + * ====== === = == = + * = === === = == ==== + * = === === = == = = + * == ===== ==== == + * ======================== + * + * gitjoe-www: css/site.css + * Fri Apr 29 21:22:38 CEST 2022 + * Joe + * + * The style + */ body { margin: 0 auto; @@ -157,7 +165,7 @@ div.body-contents h1 { text-align: left; padding: 0em 0em 0.25rem 0em; margin: 0pt; - margin-top: 1em; + margin-top: 0.75em; color: #9d0006; border-bottom: 2px solid #9d0006; } @@ -168,21 +176,34 @@ div.body-contents h2 { text-align: left; padding: 0em 0em 0.25rem 0em; margin: 0pt; - margin-top: 1em; + margin-top: 2em; color: #9d0006; border-bottom: 1px solid #9d0006; } div.body-contents h3 { - font-size: 120%; + font-size: 115%; font-weight: bold; text-align: left; padding: 0em 0em 0.25rem 0em; margin: 0pt; - margin-top: 1em; + margin-top: 2em; color: #9d0006; } +div.body-contents h4 { + font-size: 110%; + font-weight: bold; + text-align: left; + padding: 0em 0em 0.20rem 0em; + margin: 0pt; + margin-top: 1em; +} + +div.body-contents p { + margin: 1em 1ex 1em 1ex !important; +} + div.body-contents b { font-weight: bold; color: #9d0006; @@ -190,6 +211,7 @@ div.body-contents b { div.body-contents li { display: list-item; + padding: 0.10rem 0pt 0.10rem 0pt; } div.body-contents ul { @@ -198,11 +220,17 @@ div.body-contents ul { list-style: square; } +div.body-contents img { + border: 2px solid #eee2e2; + background-color: #3c3836 !important; + padding: 1px; +} + div.body-contents code { font-family: SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace; font-size: smaller; background-color: #eee4e4; - color: #9d0006; + color: #900006; border-radius: 5px; padding: 2px 5px 2px 5px; } @@ -224,6 +252,23 @@ div.body-contents pre { border: 1px solid #9d0006; } +div.body-contents hr { + border-top: none; + border-bottom: 1px solid #9d0006; + width: 80%; +} + +div.figure +{ + padding: 1em; +} + +div.figure p +{ + font-size: 90%; + text-align: center; +} + div.body-contents pre.src { background-color: #3c3836; color: #ebdbb2; @@ -249,4 +294,5 @@ div#postamble { span.fa { font-size: 16px; + color: #9d0006; } |