diff options
Diffstat (limited to 'layouts/partials/head.html')
-rw-r--r-- | layouts/partials/head.html | 21 |
1 files changed, 14 insertions, 7 deletions
diff --git a/layouts/partials/head.html b/layouts/partials/head.html index 45eb8db..511a8c4 100644 --- a/layouts/partials/head.html +++ b/layouts/partials/head.html @@ -17,9 +17,16 @@ #sidebar { position:fixed; z-index: 1; + display: none; } + + #sidebar a { + text-shadow: 1px 3px 1px rgba(0,0,0,0.9); + } + .post-header { - text-shadow: 0 2px 1px rgba(0,0,0,0.9);} + text-shadow: 0 2px 1px rgba(0,0,0,0.9); + } pre { background: #3f3f3f; @@ -27,10 +34,10 @@ padding: 0.5em;} </style> <script> -function w3_open() { - document.getElementById("sidebar").style.display = "block"; -} -function w3_close() { - document.getElementById("sidebar").style.display = "none"; -} + function w3_open() { + document.getElementById("sidebar").style.display = "block"; + } + function w3_close() { + document.getElementById("sidebar").style.display = "none"; + } </script> |