diff options
-rw-r--r-- | org/css/contact.css | 4 | ||||
-rw-r--r-- | org/css/front-page.css | 6 | ||||
-rw-r--r-- | org/css/shitty-theme.css | 24 | ||||
-rw-r--r-- | org/images/linux-background.jpg | bin | 0 -> 24063 bytes | |||
-rw-r--r-- | org/images/linux-background.png | bin | 9515 -> 0 bytes | |||
-rw-r--r-- | org/images/windows_kills_kittens.jpg | bin | 66522 -> 23398 bytes | |||
-rw-r--r-- | org/linux-room.org | 2 | ||||
-rw-r--r-- | shittyweb-html.el | 5 |
8 files changed, 31 insertions, 10 deletions
diff --git a/org/css/contact.css b/org/css/contact.css index a991fef..1704bfc 100644 --- a/org/css/contact.css +++ b/org/css/contact.css @@ -7,7 +7,7 @@ body { margin: auto; color: #00ff00; background-color: #060a0f; - border: 1px solid black; + border: 1px solid gray; } a:link { @@ -23,7 +23,7 @@ b { } .outline-2 { - border: 1px dotted black; + border: 1px dotted gray; } #buttons { diff --git a/org/css/front-page.css b/org/css/front-page.css index c4595a3..3f75712 100644 --- a/org/css/front-page.css +++ b/org/css/front-page.css @@ -15,7 +15,9 @@ body { margin: auto; color: #00ff00; background-color: #060a0f; - border: 1px solid black; + border: 1px solid gray; + word-wrap : break-word; + overflow-wrap: break-word; } a:link { @@ -35,7 +37,7 @@ table { } .outline-2 { - border: 1px dotted black; + border: 1px dotted gray; } #buttons { diff --git a/org/css/shitty-theme.css b/org/css/shitty-theme.css index 19da409..e2aeff2 100644 --- a/org/css/shitty-theme.css +++ b/org/css/shitty-theme.css @@ -1,5 +1,5 @@ body { - background-color: #dcd1ba; + background-color: black; } .shittyweb-header { @@ -9,18 +9,32 @@ body { #content { width: 65%; margin: auto; - background-color: #bebebe; - border: 1px solid black; + color: #00ff00; + background-color: #060a0f; + border: 1px solid gray; word-wrap : break-word; overflow-wrap: break-word; } +a:link { + color: red; +} + +a:visited { + color: pink; +} + +b { + color: white; +} + .outline-2 { - border: 1px dotted black; + border: 1px dotted gray; } .org-src-container { - background-color: white; + color: black; + background-color: darkgray; } #postamble { diff --git a/org/images/linux-background.jpg b/org/images/linux-background.jpg Binary files differnew file mode 100644 index 0000000..1960093 --- /dev/null +++ b/org/images/linux-background.jpg diff --git a/org/images/linux-background.png b/org/images/linux-background.png Binary files differdeleted file mode 100644 index 2715a80..0000000 --- a/org/images/linux-background.png +++ /dev/null diff --git a/org/images/windows_kills_kittens.jpg b/org/images/windows_kills_kittens.jpg Binary files differindex 4650982..eb964ff 100644 --- a/org/images/windows_kills_kittens.jpg +++ b/org/images/windows_kills_kittens.jpg diff --git a/org/linux-room.org b/org/linux-room.org index 8009e7d..856ab34 100644 --- a/org/linux-room.org +++ b/org/linux-room.org @@ -1,6 +1,6 @@ #+SETUPFILE: ../org-templates/level-1.org #+TITLE: Linux Room -#+BACKGROUND_IMAGE: images/linux-background.png +#+BACKGROUND_IMAGE: images/linux-background.jpg #+SHITTYWEB_HEADER: <img src="images/flying_tux.gif" alt="Tux the penguin flying"/> * Why linux diff --git a/shittyweb-html.el b/shittyweb-html.el index c0d817c..3454566 100644 --- a/shittyweb-html.el +++ b/shittyweb-html.el @@ -41,6 +41,11 @@ holding export options." ">\n") "<head>\n" ;;(org-html--build-meta-info info) ;; Causes scaling issues on mobile + ;; Title (to make up for the above line commented out) + (let* ((title (org-html-plain-text + (org-element-interpret-data (plist-get info :title)) info)) + (title (if (org-string-nw-p title) title "‎"))) + (format "<title>%s</title>\n" title)) (org-html--build-head info) (org-html--build-mathjax-config info) ;; Background |