|
| 1 | +@charset "utf-8"; |
| 2 | +@import url('https://fonts.googleapis.com/css?family=Source+Code+Pro'); |
| 3 | + |
| 4 | +/** |
| 5 | + * Style variables |
| 6 | + */ |
| 7 | +$base-font-family: 'Source Code Pro', monospace !default; |
| 8 | +$base-font-size: 16px !default; |
| 9 | +$base-line-height: 1.7 !default; |
| 10 | +$text-color: #fff !default; |
| 11 | +$background-color: #000 !default; |
| 12 | +$primary-color: #a1fc8f !default; |
| 13 | +$container-max-width: 600px !default; |
| 14 | + |
| 15 | +/** |
| 16 | + * Global |
| 17 | + */ |
| 18 | +body { background-color: $background-color; margin: 0 auto; padding: 0; font-family: $base-font-family; font-size: 13px; color: $text-color; text-align: left; line-height: $base-line-height !important; } |
| 19 | +h1, h2, h3, h4, h5, h6 { font-size: 13px; margin: 0px; margin-bottom: 3px; margin-top: 25px; font-weight: bold; color: #fff; } |
| 20 | +p { margin: 0px; } |
| 21 | +a { text-decoration: underline; color: #fff; } |
| 22 | +a:hover { color: #000; background-color: #fff; } |
| 23 | +.post-header { margin: 0px; } |
| 24 | + |
| 25 | +/** |
| 26 | + * Layout |
| 27 | + */ |
| 28 | +.container { width: 80%; max-width: $container-max-width; margin-right: auto; margin-left: auto; } |
| 29 | +p { word-wrap: break-word; word-break: break-word; white-space: pre-wrap; } |
| 30 | +footer { color: #fff; border-top: dashed 1px rgba(255,255,255,0.8); margin: 20px auto 15px; padding-top: 10px; text-align: right; } |
| 31 | +header { margin-top: 25px; margin-bottom: 10px; color: rgba(161,252,143,1); } |
| 32 | +header p { text-align: left; margin: 0; color: rgba(255,255,255,1); } |
| 33 | + |
| 34 | +/** |
| 35 | + * Highlight/Markup |
| 36 | + */ |
| 37 | +::selection { background: rgba(255,255,255,0.99); color: #000; } |
| 38 | +::-moz-selection { background: rgba(255,255,255,0.99); color: #000; } |
| 39 | + |
| 40 | +/** |
| 41 | + * Lists |
| 42 | + */ |
| 43 | +:not(.menu) > ul { list-style: none; padding-left: 0; } |
| 44 | +:not(.menu) > ul { list-style-type: none; } |
| 45 | +:not(.menu) > ul > li:before { content: "-"; margin-right: 9px; } |
| 46 | + |
| 47 | +/** |
| 48 | + * Header/Navigation |
| 49 | + */ |
| 50 | +.menu { border-top: 1px dashed rgba(255,255,255,0.8); border-bottom: 1px dashed rgba(255,255,255,0.8); margin-bottom: 25px; } |
| 51 | +.menu ul { margin-top: 12px; margin-bottom: 12px; padding-left: 0px; list-style-type: none; text-align: right; } |
| 52 | +.menu ul li { display: inline; margin-left: 10px; } |
| 53 | +.menu ul li a { text-decoration: none; color: #fff; } |
| 54 | +.menu ul li a:hover { text-decoration: none; color: #000; background-color: #fff; } |
| 55 | + |
| 56 | +/** |
| 57 | + * Code and syntax highlighting |
| 58 | + */ |
| 59 | +pre { background-color: rgba(255,255,255,0); border: none; padding: 0px; overflow:auto; font-size: 12px; color: rgba(255,255,255,0.65); line-height: 1.7 !important; } |
| 60 | +.highlight .c { color: #999988; font-style: italic } /* Comment */ |
| 61 | +.highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */ |
| 62 | +.highlight .k { font-weight: bold } /* Keyword */ |
| 63 | +.highlight .o { font-weight: bold } /* Operator */ |
| 64 | +.highlight .cm { color: #999988; font-style: italic } /* Comment.Multiline */ |
| 65 | +.highlight .cp { color: #999999; font-weight: bold } /* Comment.Preproc */ |
| 66 | +.highlight .c1 { color: #999988; font-style: italic } /* Comment.Single */ |
| 67 | +.highlight .cs { color: #999999; font-weight: bold; font-style: italic } /* Comment.Special */ |
| 68 | +.highlight .gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */ |
| 69 | +.highlight .gd .x { color: #000000; background-color: #ffaaaa } /* Generic.Deleted.Specific */ |
| 70 | +.highlight .ge { font-style: italic } /* Generic.Emph */ |
| 71 | +.highlight .gr { color: #aa0000 } /* Generic.Error */ |
| 72 | +.highlight .gh { color: #999999 } /* Generic.Heading */ |
| 73 | +.highlight .gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */ |
| 74 | +.highlight .gi .x { color: #000000; background-color: #aaffaa } /* Generic.Inserted.Specific */ |
| 75 | +.highlight .go { color: #888888 } /* Generic.Output */ |
| 76 | +.highlight .gp { color: #555555 } /* Generic.Prompt */ |
| 77 | +.highlight .gs { font-weight: bold } /* Generic.Strong */ |
| 78 | +.highlight .gu { color: #aaaaaa } /* Generic.Subheading */ |
| 79 | +.highlight .gt { color: #aa0000 } /* Generic.Traceback */ |
| 80 | +.highlight .kc { font-weight: bold } /* Keyword.Constant */ |
| 81 | +.highlight .kd { font-weight: bold } /* Keyword.Declaration */ |
| 82 | +.highlight .kp { font-weight: bold } /* Keyword.Pseudo */ |
| 83 | +.highlight .kr { font-weight: bold } /* Keyword.Reserved */ |
| 84 | +.highlight .kt { color: #445588; font-weight: bold } /* Keyword.Type */ |
| 85 | +.highlight .m { color: #009999 } /* Literal.Number */ |
| 86 | +.highlight .s { color: #d14 } /* Literal.String */ |
| 87 | +.highlight .na { color: #008080 } /* Name.Attribute */ |
| 88 | +.highlight .nb { color: #0086B3 } /* Name.Builtin */ |
| 89 | +.highlight .nc { color: #445588; font-weight: bold } /* Name.Class */ |
| 90 | +.highlight .no { color: #008080 } /* Name.Constant */ |
| 91 | +.highlight .ni { color: #800080 } /* Name.Entity */ |
| 92 | +.highlight .ne { color: #990000; font-weight: bold } /* Name.Exception */ |
| 93 | +.highlight .nf { color: #990000; font-weight: bold } /* Name.Function */ |
| 94 | +.highlight .nn { color: #555555 } /* Name.Namespace */ |
| 95 | +.highlight .nt { color: #000080 } /* Name.Tag */ |
| 96 | +.highlight .nv { color: #008080 } /* Name.Variable */ |
| 97 | +.highlight .ow { font-weight: bold } /* Operator.Word */ |
| 98 | +.highlight .w { color: #bbbbbb } /* Text.Whitespace */ |
| 99 | +.highlight .mf { color: #009999 } /* Literal.Number.Float */ |
| 100 | +.highlight .mh { color: #009999 } /* Literal.Number.Hex */ |
| 101 | +.highlight .mi { color: #009999 } /* Literal.Number.Integer */ |
| 102 | +.highlight .mo { color: #009999 } /* Literal.Number.Oct */ |
| 103 | +.highlight .sb { color: #d14 } /* Literal.String.Backtick */ |
| 104 | +.highlight .sc { color: #d14 } /* Literal.String.Char */ |
| 105 | +.highlight .sd { color: #d14 } /* Literal.String.Doc */ |
| 106 | +.highlight .s2 { color: #d14 } /* Literal.String.Double */ |
| 107 | +.highlight .se { color: #d14 } /* Literal.String.Escape */ |
| 108 | +.highlight .sh { color: #d14 } /* Literal.String.Heredoc */ |
| 109 | +.highlight .si { color: #d14 } /* Literal.String.Interpol */ |
| 110 | +.highlight .sx { color: #d14 } /* Literal.String.Other */ |
| 111 | +.highlight .sr { color: #009926 } /* Literal.String.Regex */ |
| 112 | +.highlight .s1 { color: #d14 } /* Literal.String.Single */ |
| 113 | +.highlight .ss { color: #990073 } /* Literal.String.Symbol */ |
| 114 | +.highlight .bp { color: #999999 } /* Name.Builtin.Pseudo */ |
| 115 | +.highlight .vc { color: #008080 } /* Name.Variable.Class */ |
| 116 | +.highlight .vg { color: #008080 } /* Name.Variable.Global */ |
| 117 | +.highlight .vi { color: #008080 } /* Name.Variable.Instance */ |
| 118 | +.highlight .il { color: #009999 } /* Literal.Number.Integer.Long */ |
0 commit comments