summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSiri Reiter <siri@jones.dk>2020-05-21 20:01:45 +0200
committerSiri Reiter <siri@jones.dk>2020-05-21 20:02:22 +0200
commit705040e9965584b172f411a93f6b7449f2328961 (patch)
treec4354db3d011e61d8bc19bd2fc7a57e6a0a08cda
parent2270e839072b5b68b695994faec97c8a18623414 (diff)
Paste sidebar style branding setup from sirireiter.dk, add logo
-rw-r--r--branding.mdwn1
-rw-r--r--logo.jpgbin0 -> 26984 bytes
-rw-r--r--style.scss32
3 files changed, 33 insertions, 0 deletions
diff --git a/branding.mdwn b/branding.mdwn
new file mode 100644
index 0000000..0519ecb
--- /dev/null
+++ b/branding.mdwn
@@ -0,0 +1 @@
+ \ No newline at end of file
diff --git a/logo.jpg b/logo.jpg
new file mode 100644
index 0000000..8dcf948
--- /dev/null
+++ b/logo.jpg
Binary files differ
diff --git a/style.scss b/style.scss
index a057668..bce431f 100644
--- a/style.scss
+++ b/style.scss
@@ -15,6 +15,18 @@ h1 {
font-size: 2.75em;
}
+.branding {
+ z-index: -1;
+ position: fixed;
+ bottom: 0; // full height isn't enough on Replicant browser
+ height: 100%;
+ width: 100%;
+ background-color: transparent;
+ background-image: url("logo.jpg");
+ background-repeat: no-repeat;
+ background-position: right bottom;
+}
+
.pageheader {
padding: 1em;
}
@@ -49,6 +61,26 @@ a {
}
}
+
+.sidebar {
+ background: none;
+ padding: 1em;
+ border: none;
+ margin-top: 4em;
+ margin-right: 2em;
+ margin-bottom: 2em;
+ margin-left: 2em;
+}
+
+.sidebar ul li {
+ list-style-type: none;
+}
+
+.sidebar ul li .selflink {
+ color: $linkHoverColor;
+}
+
+
#content {
width: 100%;
max-width: 52em;