From f8f58334e70d24e4f4acef78d0951565b92ea341 Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Tue, 22 Mar 2022 16:01:51 +0300 Subject: css: move CSS files to jekyll-theme/ --- assets/css/common/fix_bootstrap.css | 43 ------------------ assets/css/common/footer.css | 30 ------------- assets/css/common/posts.css | 15 ------- assets/css/common/utils.css | 7 --- assets/css/jekyll-theme.css | 7 +++ assets/css/jekyll-theme/fix_bootstrap.css | 43 ++++++++++++++++++ assets/css/jekyll-theme/footer.css | 30 +++++++++++++ assets/css/jekyll-theme/posts.css | 15 +++++++ assets/css/jekyll-theme/shell.css | 53 ++++++++++++++++++++++ assets/css/jekyll-theme/snippets.css | 11 +++++ assets/css/jekyll-theme/syntax.css | 74 +++++++++++++++++++++++++++++++ assets/css/jekyll-theme/utils.css | 7 +++ assets/css/main.css | 7 --- assets/css/shell.css | 53 ---------------------- assets/css/snippets.css | 11 ----- assets/css/syntax.css | 74 ------------------------------- 16 files changed, 240 insertions(+), 240 deletions(-) delete mode 100644 assets/css/common/fix_bootstrap.css delete mode 100644 assets/css/common/footer.css delete mode 100644 assets/css/common/posts.css delete mode 100644 assets/css/common/utils.css create mode 100644 assets/css/jekyll-theme.css create mode 100644 assets/css/jekyll-theme/fix_bootstrap.css create mode 100644 assets/css/jekyll-theme/footer.css create mode 100644 assets/css/jekyll-theme/posts.css create mode 100644 assets/css/jekyll-theme/shell.css create mode 100644 assets/css/jekyll-theme/snippets.css create mode 100644 assets/css/jekyll-theme/syntax.css create mode 100644 assets/css/jekyll-theme/utils.css delete mode 100644 assets/css/main.css delete mode 100644 assets/css/shell.css delete mode 100644 assets/css/snippets.css delete mode 100644 assets/css/syntax.css (limited to 'assets') diff --git a/assets/css/common/fix_bootstrap.css b/assets/css/common/fix_bootstrap.css deleted file mode 100644 index 03100b3..0000000 --- a/assets/css/common/fix_bootstrap.css +++ /dev/null @@ -1,43 +0,0 @@ -/* Links become blue inside of elements otherwise. */ -h1 a, -h2 a, -h3 a, -h4 a, -h5 a, -h6 a { - color: inherit; -} -span.badge { - /* Link captions might become too close to badges on the sidebar. */ - margin-left: .5em; - /* Color badges in the color of grass. - * TODO: research if this can be set in the config or factor it out into a - * variable. */ - background-color: #008567; -} -/* Add horizontal scrollbars to
s and don't wrap the code inside. */
-pre {
-  overflow-x: auto;
-}
-pre code {
-  white-space: pre;
-  word-wrap: normal;
-}
-/* Fixup syntax.css, which sets the code background to white. */
-.highlight {
-  background-color: #fafafa !important;
-}
-/* Prevent  elements from standing out from alerts. */
-.alert code {
-  padding: 0;
-  background-color: inherit;
-}
-/* Don't color category links blue. */
-.text-muted a.category {
-  color: inherit;
-}
-/* WTF? Sometimes I want to skip .list-group-item-text, and I don't want the
- * margin for the heading. */
-.list-group-item-heading:last-child {
-  margin-bottom: 0;
-}
diff --git a/assets/css/common/footer.css b/assets/css/common/footer.css
deleted file mode 100644
index 1e05c57..0000000
--- a/assets/css/common/footer.css
+++ /dev/null
@@ -1,30 +0,0 @@
-html, body {
-  height: 100%;
-  width: 100%;
-}
-.top-level-footer-wrapper {
-  height: 100%;
-  width: 100%;
-  display: table;
-
-  /*
-   * Without this property, scrollbars inside 
 elements don't work if
-   * display's width is less than 750px.
-   * God, I hate CSS.
-   */
-  table-layout: fixed;
-}
-.footer-wrapper-collapse {
-  display: table-row;
-  height: 1px;
-}
-.footer-wrapper-expand {
-  display: table-row;
-  height: auto;
-}
-footer {
-  margin-top: 20px;
-  padding: 15px 0 15px;
-  border-width: 1px 0;
-  border-style: solid;
-}
diff --git a/assets/css/common/posts.css b/assets/css/common/posts.css
deleted file mode 100644
index d9ee811..0000000
--- a/assets/css/common/posts.css
+++ /dev/null
@@ -1,15 +0,0 @@
-/* This is a relatively popular workaround to align side-by-side columns.
- * I use it for post headers. */
-.post-header {
-  display: flex;
-  flex-wrap: wrap;
-  align-items: baseline;
-  justify-content: space-between;
-  column-gap: 1em;
-}
-.post-date {
-  text-align: right;
-}
-.post-date a.category {
-  margin-right: .5em;
-}
diff --git a/assets/css/common/utils.css b/assets/css/common/utils.css
deleted file mode 100644
index 6f00df3..0000000
--- a/assets/css/common/utils.css
+++ /dev/null
@@ -1,7 +0,0 @@
-/* Utility classes to prevent blocks from expanding unreasonably. */
-.wide-enough {
-  max-width: 400px;
-}
-.wider {
-  max-width: 600px;
-}
diff --git a/assets/css/jekyll-theme.css b/assets/css/jekyll-theme.css
new file mode 100644
index 0000000..5491dcb
--- /dev/null
+++ b/assets/css/jekyll-theme.css
@@ -0,0 +1,7 @@
+@import 'jekyll-theme/fix_bootstrap.css';
+@import 'jekyll-theme/footer.css';
+@import 'jekyll-theme/posts.css';
+@import 'jekyll-theme/shell.css';
+@import 'jekyll-theme/snippets.css';
+@import 'jekyll-theme/syntax.css';
+@import 'jekyll-theme/utils.css';
diff --git a/assets/css/jekyll-theme/fix_bootstrap.css b/assets/css/jekyll-theme/fix_bootstrap.css
new file mode 100644
index 0000000..03100b3
--- /dev/null
+++ b/assets/css/jekyll-theme/fix_bootstrap.css
@@ -0,0 +1,43 @@
+/* Links become blue inside of  elements otherwise. */
+h1 a,
+h2 a,
+h3 a,
+h4 a,
+h5 a,
+h6 a {
+  color: inherit;
+}
+span.badge {
+  /* Link captions might become too close to badges on the sidebar. */
+  margin-left: .5em;
+  /* Color badges in the color of grass.
+   * TODO: research if this can be set in the config or factor it out into a
+   * variable. */
+  background-color: #008567;
+}
+/* Add horizontal scrollbars to 
s and don't wrap the code inside. */
+pre {
+  overflow-x: auto;
+}
+pre code {
+  white-space: pre;
+  word-wrap: normal;
+}
+/* Fixup syntax.css, which sets the code background to white. */
+.highlight {
+  background-color: #fafafa !important;
+}
+/* Prevent  elements from standing out from alerts. */
+.alert code {
+  padding: 0;
+  background-color: inherit;
+}
+/* Don't color category links blue. */
+.text-muted a.category {
+  color: inherit;
+}
+/* WTF? Sometimes I want to skip .list-group-item-text, and I don't want the
+ * margin for the heading. */
+.list-group-item-heading:last-child {
+  margin-bottom: 0;
+}
diff --git a/assets/css/jekyll-theme/footer.css b/assets/css/jekyll-theme/footer.css
new file mode 100644
index 0000000..1e05c57
--- /dev/null
+++ b/assets/css/jekyll-theme/footer.css
@@ -0,0 +1,30 @@
+html, body {
+  height: 100%;
+  width: 100%;
+}
+.top-level-footer-wrapper {
+  height: 100%;
+  width: 100%;
+  display: table;
+
+  /*
+   * Without this property, scrollbars inside 
 elements don't work if
+   * display's width is less than 750px.
+   * God, I hate CSS.
+   */
+  table-layout: fixed;
+}
+.footer-wrapper-collapse {
+  display: table-row;
+  height: 1px;
+}
+.footer-wrapper-expand {
+  display: table-row;
+  height: auto;
+}
+footer {
+  margin-top: 20px;
+  padding: 15px 0 15px;
+  border-width: 1px 0;
+  border-style: solid;
+}
diff --git a/assets/css/jekyll-theme/posts.css b/assets/css/jekyll-theme/posts.css
new file mode 100644
index 0000000..d9ee811
--- /dev/null
+++ b/assets/css/jekyll-theme/posts.css
@@ -0,0 +1,15 @@
+/* This is a relatively popular workaround to align side-by-side columns.
+ * I use it for post headers. */
+.post-header {
+  display: flex;
+  flex-wrap: wrap;
+  align-items: baseline;
+  justify-content: space-between;
+  column-gap: 1em;
+}
+.post-date {
+  text-align: right;
+}
+.post-date a.category {
+  margin-right: .5em;
+}
diff --git a/assets/css/jekyll-theme/shell.css b/assets/css/jekyll-theme/shell.css
new file mode 100644
index 0000000..6e8ddce
--- /dev/null
+++ b/assets/css/jekyll-theme/shell.css
@@ -0,0 +1,53 @@
+.shell pre {
+  /* Reset Bootstrap's settings for 
. */
+  margin: 0;
+  border-radius: 0;
+}
+
+/* WTF is this? I somehow came up with it, but I hope there's a better way.
+ * 10.5px is the standard bottom margin for 
s. */
+.shell {
+  margin-bottom: 10.5px;
+}
+.shell + .shell {
+  margin-top: -10.5px;
+}
+
+.shell > div {
+  display: flex;
+  overflow: auto;
+}
+.shell-mark {
+  /* Don't shrink it. */
+  flex: none;
+}
+.shell-cmd {
+  flex: 1;
+  /* The combination of overflow values disables the scrollbar for .shell-cmd
+   * and assigns it to the outer div instead, which looks nicer. */
+  overflow: visible;
+}
+
+/* Styling, yo. */
+.shell > div {
+  /* Color the border in the color of grass. */
+  border: medium solid #008567;
+  border-width: 0 0 medium 0;
+}
+.shell-mark, .shell-cmd {
+  border: none;
+  background-color: #f0f0f0;
+}
+.shell-mark {
+  font-weight: bold;
+  /* I like colors. */
+  color: #20004b;
+  user-select: none;
+}
+.shell-cmd {
+  /* No double-padding between .shell-mark and .shell-cmd. */
+  padding-left: 0;
+}
+.shell-out {
+  border-width: 0 0 thin 0;
+}
diff --git a/assets/css/jekyll-theme/snippets.css b/assets/css/jekyll-theme/snippets.css
new file mode 100644
index 0000000..e442cd1
--- /dev/null
+++ b/assets/css/jekyll-theme/snippets.css
@@ -0,0 +1,11 @@
+div.panel-body div.highlight {
+  border-radius: 0 0 4px 4px;
+}
+div.panel-body pre {
+  margin: 0;
+  border: none;
+  border-radius: 0 0 4px 4px;
+}
+div.panel-body {
+  padding: 0;
+}
diff --git a/assets/css/jekyll-theme/syntax.css b/assets/css/jekyll-theme/syntax.css
new file mode 100644
index 0000000..6eaa1dd
--- /dev/null
+++ b/assets/css/jekyll-theme/syntax.css
@@ -0,0 +1,74 @@
+/* It's the "autumn" Pygments theme. Grabbed this at [1]. You can also generate
+ * this using something like
+ *
+ *     pygmentize -S default -f html -a .highlight
+ *
+ * [1]: https://github.com/richleland/pygments-css/blob/c39da1d9e5f0f67a0117af6207bc50ee875ca3b7/autumn.css
+ */
+
+.highlight .hll { background-color: #ffffcc }
+.highlight  { background: #ffffff; }
+.highlight .c { color: #aaaaaa; font-style: italic } /* Comment */
+.highlight .err { color: #FF0000; background-color: #FFAAAA } /* Error */
+.highlight .k { color: #0000aa } /* Keyword */
+.highlight .ch { color: #aaaaaa; font-style: italic } /* Comment.Hashbang */
+.highlight .cm { color: #aaaaaa; font-style: italic } /* Comment.Multiline */
+.highlight .cp { color: #4c8317 } /* Comment.Preproc */
+.highlight .cpf { color: #aaaaaa; font-style: italic } /* Comment.PreprocFile */
+.highlight .c1 { color: #aaaaaa; font-style: italic } /* Comment.Single */
+.highlight .cs { color: #0000aa; font-style: italic } /* Comment.Special */
+.highlight .gd { color: #aa0000 } /* Generic.Deleted */
+.highlight .ge { font-style: italic } /* Generic.Emph */
+.highlight .gr { color: #aa0000 } /* Generic.Error */
+.highlight .gh { color: #000080; font-weight: bold } /* Generic.Heading */
+.highlight .gi { color: #00aa00 } /* Generic.Inserted */
+.highlight .go { color: #888888 } /* Generic.Output */
+.highlight .gp { color: #555555 } /* Generic.Prompt */
+.highlight .gs { font-weight: bold } /* Generic.Strong */
+.highlight .gu { color: #800080; font-weight: bold } /* Generic.Subheading */
+.highlight .gt { color: #aa0000 } /* Generic.Traceback */
+.highlight .kc { color: #0000aa } /* Keyword.Constant */
+.highlight .kd { color: #0000aa } /* Keyword.Declaration */
+.highlight .kn { color: #0000aa } /* Keyword.Namespace */
+.highlight .kp { color: #0000aa } /* Keyword.Pseudo */
+.highlight .kr { color: #0000aa } /* Keyword.Reserved */
+.highlight .kt { color: #00aaaa } /* Keyword.Type */
+.highlight .m { color: #009999 } /* Literal.Number */
+.highlight .s { color: #aa5500 } /* Literal.String */
+.highlight .na { color: #1e90ff } /* Name.Attribute */
+.highlight .nb { color: #00aaaa } /* Name.Builtin */
+.highlight .nc { color: #00aa00; text-decoration: underline } /* Name.Class */
+.highlight .no { color: #aa0000 } /* Name.Constant */
+.highlight .nd { color: #888888 } /* Name.Decorator */
+.highlight .ni { color: #880000; font-weight: bold } /* Name.Entity */
+.highlight .nf { color: #00aa00 } /* Name.Function */
+.highlight .nn { color: #00aaaa; text-decoration: underline } /* Name.Namespace */
+.highlight .nt { color: #1e90ff; font-weight: bold } /* Name.Tag */
+.highlight .nv { color: #aa0000 } /* Name.Variable */
+.highlight .ow { color: #0000aa } /* Operator.Word */
+.highlight .w { color: #bbbbbb } /* Text.Whitespace */
+.highlight .mb { color: #009999 } /* Literal.Number.Bin */
+.highlight .mf { color: #009999 } /* Literal.Number.Float */
+.highlight .mh { color: #009999 } /* Literal.Number.Hex */
+.highlight .mi { color: #009999 } /* Literal.Number.Integer */
+.highlight .mo { color: #009999 } /* Literal.Number.Oct */
+.highlight .sa { color: #aa5500 } /* Literal.String.Affix */
+.highlight .sb { color: #aa5500 } /* Literal.String.Backtick */
+.highlight .sc { color: #aa5500 } /* Literal.String.Char */
+.highlight .dl { color: #aa5500 } /* Literal.String.Delimiter */
+.highlight .sd { color: #aa5500 } /* Literal.String.Doc */
+.highlight .s2 { color: #aa5500 } /* Literal.String.Double */
+.highlight .se { color: #aa5500 } /* Literal.String.Escape */
+.highlight .sh { color: #aa5500 } /* Literal.String.Heredoc */
+.highlight .si { color: #aa5500 } /* Literal.String.Interpol */
+.highlight .sx { color: #aa5500 } /* Literal.String.Other */
+.highlight .sr { color: #009999 } /* Literal.String.Regex */
+.highlight .s1 { color: #aa5500 } /* Literal.String.Single */
+.highlight .ss { color: #0000aa } /* Literal.String.Symbol */
+.highlight .bp { color: #00aaaa } /* Name.Builtin.Pseudo */
+.highlight .fm { color: #00aa00 } /* Name.Function.Magic */
+.highlight .vc { color: #aa0000 } /* Name.Variable.Class */
+.highlight .vg { color: #aa0000 } /* Name.Variable.Global */
+.highlight .vi { color: #aa0000 } /* Name.Variable.Instance */
+.highlight .vm { color: #aa0000 } /* Name.Variable.Magic */
+.highlight .il { color: #009999 } /* Literal.Number.Integer.Long */
diff --git a/assets/css/jekyll-theme/utils.css b/assets/css/jekyll-theme/utils.css
new file mode 100644
index 0000000..6f00df3
--- /dev/null
+++ b/assets/css/jekyll-theme/utils.css
@@ -0,0 +1,7 @@
+/* Utility classes to prevent blocks from expanding unreasonably. */
+.wide-enough {
+  max-width: 400px;
+}
+.wider {
+  max-width: 600px;
+}
diff --git a/assets/css/main.css b/assets/css/main.css
deleted file mode 100644
index b84b432..0000000
--- a/assets/css/main.css
+++ /dev/null
@@ -1,7 +0,0 @@
-@import 'common/fix_bootstrap.css';
-@import 'common/footer.css';
-@import 'common/posts.css';
-@import 'common/utils.css';
-@import 'shell.css';
-@import 'snippets.css';
-@import 'syntax.css';
diff --git a/assets/css/shell.css b/assets/css/shell.css
deleted file mode 100644
index 6e8ddce..0000000
--- a/assets/css/shell.css
+++ /dev/null
@@ -1,53 +0,0 @@
-.shell pre {
-  /* Reset Bootstrap's settings for 
. */
-  margin: 0;
-  border-radius: 0;
-}
-
-/* WTF is this? I somehow came up with it, but I hope there's a better way.
- * 10.5px is the standard bottom margin for 
s. */
-.shell {
-  margin-bottom: 10.5px;
-}
-.shell + .shell {
-  margin-top: -10.5px;
-}
-
-.shell > div {
-  display: flex;
-  overflow: auto;
-}
-.shell-mark {
-  /* Don't shrink it. */
-  flex: none;
-}
-.shell-cmd {
-  flex: 1;
-  /* The combination of overflow values disables the scrollbar for .shell-cmd
-   * and assigns it to the outer div instead, which looks nicer. */
-  overflow: visible;
-}
-
-/* Styling, yo. */
-.shell > div {
-  /* Color the border in the color of grass. */
-  border: medium solid #008567;
-  border-width: 0 0 medium 0;
-}
-.shell-mark, .shell-cmd {
-  border: none;
-  background-color: #f0f0f0;
-}
-.shell-mark {
-  font-weight: bold;
-  /* I like colors. */
-  color: #20004b;
-  user-select: none;
-}
-.shell-cmd {
-  /* No double-padding between .shell-mark and .shell-cmd. */
-  padding-left: 0;
-}
-.shell-out {
-  border-width: 0 0 thin 0;
-}
diff --git a/assets/css/snippets.css b/assets/css/snippets.css
deleted file mode 100644
index e442cd1..0000000
--- a/assets/css/snippets.css
+++ /dev/null
@@ -1,11 +0,0 @@
-div.panel-body div.highlight {
-  border-radius: 0 0 4px 4px;
-}
-div.panel-body pre {
-  margin: 0;
-  border: none;
-  border-radius: 0 0 4px 4px;
-}
-div.panel-body {
-  padding: 0;
-}
diff --git a/assets/css/syntax.css b/assets/css/syntax.css
deleted file mode 100644
index 6eaa1dd..0000000
--- a/assets/css/syntax.css
+++ /dev/null
@@ -1,74 +0,0 @@
-/* It's the "autumn" Pygments theme. Grabbed this at [1]. You can also generate
- * this using something like
- *
- *     pygmentize -S default -f html -a .highlight
- *
- * [1]: https://github.com/richleland/pygments-css/blob/c39da1d9e5f0f67a0117af6207bc50ee875ca3b7/autumn.css
- */
-
-.highlight .hll { background-color: #ffffcc }
-.highlight  { background: #ffffff; }
-.highlight .c { color: #aaaaaa; font-style: italic } /* Comment */
-.highlight .err { color: #FF0000; background-color: #FFAAAA } /* Error */
-.highlight .k { color: #0000aa } /* Keyword */
-.highlight .ch { color: #aaaaaa; font-style: italic } /* Comment.Hashbang */
-.highlight .cm { color: #aaaaaa; font-style: italic } /* Comment.Multiline */
-.highlight .cp { color: #4c8317 } /* Comment.Preproc */
-.highlight .cpf { color: #aaaaaa; font-style: italic } /* Comment.PreprocFile */
-.highlight .c1 { color: #aaaaaa; font-style: italic } /* Comment.Single */
-.highlight .cs { color: #0000aa; font-style: italic } /* Comment.Special */
-.highlight .gd { color: #aa0000 } /* Generic.Deleted */
-.highlight .ge { font-style: italic } /* Generic.Emph */
-.highlight .gr { color: #aa0000 } /* Generic.Error */
-.highlight .gh { color: #000080; font-weight: bold } /* Generic.Heading */
-.highlight .gi { color: #00aa00 } /* Generic.Inserted */
-.highlight .go { color: #888888 } /* Generic.Output */
-.highlight .gp { color: #555555 } /* Generic.Prompt */
-.highlight .gs { font-weight: bold } /* Generic.Strong */
-.highlight .gu { color: #800080; font-weight: bold } /* Generic.Subheading */
-.highlight .gt { color: #aa0000 } /* Generic.Traceback */
-.highlight .kc { color: #0000aa } /* Keyword.Constant */
-.highlight .kd { color: #0000aa } /* Keyword.Declaration */
-.highlight .kn { color: #0000aa } /* Keyword.Namespace */
-.highlight .kp { color: #0000aa } /* Keyword.Pseudo */
-.highlight .kr { color: #0000aa } /* Keyword.Reserved */
-.highlight .kt { color: #00aaaa } /* Keyword.Type */
-.highlight .m { color: #009999 } /* Literal.Number */
-.highlight .s { color: #aa5500 } /* Literal.String */
-.highlight .na { color: #1e90ff } /* Name.Attribute */
-.highlight .nb { color: #00aaaa } /* Name.Builtin */
-.highlight .nc { color: #00aa00; text-decoration: underline } /* Name.Class */
-.highlight .no { color: #aa0000 } /* Name.Constant */
-.highlight .nd { color: #888888 } /* Name.Decorator */
-.highlight .ni { color: #880000; font-weight: bold } /* Name.Entity */
-.highlight .nf { color: #00aa00 } /* Name.Function */
-.highlight .nn { color: #00aaaa; text-decoration: underline } /* Name.Namespace */
-.highlight .nt { color: #1e90ff; font-weight: bold } /* Name.Tag */
-.highlight .nv { color: #aa0000 } /* Name.Variable */
-.highlight .ow { color: #0000aa } /* Operator.Word */
-.highlight .w { color: #bbbbbb } /* Text.Whitespace */
-.highlight .mb { color: #009999 } /* Literal.Number.Bin */
-.highlight .mf { color: #009999 } /* Literal.Number.Float */
-.highlight .mh { color: #009999 } /* Literal.Number.Hex */
-.highlight .mi { color: #009999 } /* Literal.Number.Integer */
-.highlight .mo { color: #009999 } /* Literal.Number.Oct */
-.highlight .sa { color: #aa5500 } /* Literal.String.Affix */
-.highlight .sb { color: #aa5500 } /* Literal.String.Backtick */
-.highlight .sc { color: #aa5500 } /* Literal.String.Char */
-.highlight .dl { color: #aa5500 } /* Literal.String.Delimiter */
-.highlight .sd { color: #aa5500 } /* Literal.String.Doc */
-.highlight .s2 { color: #aa5500 } /* Literal.String.Double */
-.highlight .se { color: #aa5500 } /* Literal.String.Escape */
-.highlight .sh { color: #aa5500 } /* Literal.String.Heredoc */
-.highlight .si { color: #aa5500 } /* Literal.String.Interpol */
-.highlight .sx { color: #aa5500 } /* Literal.String.Other */
-.highlight .sr { color: #009999 } /* Literal.String.Regex */
-.highlight .s1 { color: #aa5500 } /* Literal.String.Single */
-.highlight .ss { color: #0000aa } /* Literal.String.Symbol */
-.highlight .bp { color: #00aaaa } /* Name.Builtin.Pseudo */
-.highlight .fm { color: #00aa00 } /* Name.Function.Magic */
-.highlight .vc { color: #aa0000 } /* Name.Variable.Class */
-.highlight .vg { color: #aa0000 } /* Name.Variable.Global */
-.highlight .vi { color: #aa0000 } /* Name.Variable.Instance */
-.highlight .vm { color: #aa0000 } /* Name.Variable.Magic */
-.highlight .il { color: #009999 } /* Literal.Number.Integer.Long */
-- 
cgit v1.2.3