summaryrefslogtreecommitdiff
path: root/style.css
diff options
context:
space:
mode:
authorMark McNally <mark@mcnally.je>2021-06-30 16:23:02 +0100
committerMark McNally <mark@mcnally.je>2021-06-30 16:23:02 +0100
commit0bc025bff8f4e66aef1997acfbd3db7167bb2cbd (patch)
tree4d70dacd7537c62951bddba0416d2e37b838240a /style.css
parentdadfca40f908a98962f92c2cce958848e05fa975 (diff)
Added styling for a "callout" style aside and added a callout about ssh
key file permissions
Diffstat (limited to 'style.css')
-rw-r--r--style.css8
1 files changed, 8 insertions, 0 deletions
diff --git a/style.css b/style.css
index 4414804..22ba1bd 100644
--- a/style.css
+++ b/style.css
@@ -126,11 +126,19 @@ aside code {
color: green ;
}
+/* .callout here is refencing any aside given the class name callout
+ * An example being: <aside class="callout"> */
+aside.callout {
+ border: solid 1px orange;
+}
+
+
.cnp {
width: 100% ;
}
+
/* This "@media" block defines rules that will only be applied when the minimum
* width of the screen is 55em or greater. In essence, they are settings that
* only apply on normal weide screens, but *not* phones and low res monitors.