diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2022-01-29 12:12:12 +0000 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2022-01-29 12:12:12 +0000 |
commit | 6d8abdaa9faa9756174fba81f1762625fed1a581 (patch) | |
tree | b72e8462680ccaedd6e846360058e9eb9ef5c6ea /build/stylesheets | |
parent | 7c2ad53ac331edc86cbd10b3861fe6dfdfccd52e (diff) | |
parent | 8db3696b21297c19603aab30c920ca2ab33afbb6 (diff) | |
download | installation-guide-6d8abdaa9faa9756174fba81f1762625fed1a581.zip |
Merge branch 'update-css' into 'master'
Update CSS for notes, warnings and code block
See merge request installer-team/installation-guide!16
Diffstat (limited to 'build/stylesheets')
-rw-r--r-- | build/stylesheets/install.css | 20 |
1 files changed, 15 insertions, 5 deletions
diff --git a/build/stylesheets/install.css b/build/stylesheets/install.css index eee7b672c..9bf6a8163 100644 --- a/build/stylesheets/install.css +++ b/build/stylesheets/install.css @@ -137,14 +137,14 @@ h2, h3, h4, h5, h6 { /* Terminal examples */ pre.screen { - background-color: #CCCCCC; - border-style: none; + background-color: #F5F5F5; + border-radius: 0.5em 0.5em 0.5em 0.5em; color: #000000; display: block; font-family: "liberation mono","bitstream vera mono","dejavu mono",monospace; font-size: 0.9em; margin-bottom: 1em; - padding: 0.5em 1em; + padding: 0.5em 0.5em 0 0.5em; page-break-inside: avoid; white-space: pre-wrap; word-wrap: break-word; @@ -168,9 +168,19 @@ pre.screen { /* Infos blocks */ +.important { + border: 1px dashed red; +} +.caution { + border: 1px dashed #EFF500; +} +.note { + border: 1px dashed blue; +} + .important, .caution, .note, .tip { - margin-left: 2em; - margin-right: 2em; + margin-left: 1em; + margin-right: 1em; } @media (max-width: 5in), (max-device-width: 5in){ |