diff options
| author | terminaldweller <thabogre@gmail.com> | 2021-04-10 05:46:34 +0000 | 
|---|---|---|
| committer | terminaldweller <thabogre@gmail.com> | 2021-04-10 05:46:34 +0000 | 
| commit | 849e1df9b269d8cb7e1fb918a8200f60a085318a (patch) | |
| tree | bcb0ef183aabaf6228712e005459872682bcc17b /css | |
| parent | trying to add syntax highlighting for markdown (diff) | |
| download | blog-849e1df9b269d8cb7e1fb918a8200f60a085318a.tar.gz blog-849e1df9b269d8cb7e1fb918a8200f60a085318a.zip | |
added a dockerfile. fixed the relative path issues
Diffstat (limited to 'css')
| -rw-r--r-- | css/master.css | 23 | 
1 files changed, 13 insertions, 10 deletions
| diff --git a/css/master.css b/css/master.css index 1bc3166..e1ebd90 100644 --- a/css/master.css +++ b/css/master.css @@ -1,27 +1,30 @@ +@import "parasiso-dark.css"; +  body{$    text-align: left;    padding: 2%;    border-style: solid;    position: relative; -  left: 8%; -  right: 100%; +  /* left: 0; */ +  /* right: 50%; */    white-space: -moz-pre-wrap !important; -  /* color: #005f87; */ -  /* background: #000000; */ +  color: #005f87; +  background: #000000;    font-family: "DejaVuSansMono NF", Helvetica, monospace;    overflow-wrap: break-word;  }  .sidenav { -  color: #00afd7; +  color: #005f87;    height: 100%; -  width: 8%; +  width: 10%; +  border-style: solid;    position: fixed; -  z-index: 1; +  z-index: 0;    top: 0; -  left: 0; -  background-color: #111; +  right: 0; +  background-color: #000000;    overflow-x: hidden; -  padding-top: 20px; +  padding-top: 1%;    text-align: center;  } | 
