From a94801e47dcec99e86edc157d9b63ab778b6e78a Mon Sep 17 00:00:00 2001 From: Heather Miller Date: Sun, 16 Oct 2016 18:51:13 -0400 Subject: More --- _includes/head.html | 1 + _layouts/default.html | 24 +- _posts/2016-10-16-welcome-to-jekyll.markdown | 4 +- custom.css | 44 +- github.css | 61 + resources/glyphs/Consolas-Bold.eot | Bin 0 -> 120570 bytes resources/glyphs/Consolas-Bold.svg | 1899 ++++++++++++++++++++++++ resources/glyphs/Consolas-Bold.ttf | Bin 0 -> 120396 bytes resources/glyphs/Consolas-Bold.woff | Bin 0 -> 60912 bytes resources/glyphs/Consolas-Italic.eot | Bin 0 -> 124330 bytes resources/glyphs/Consolas-Italic.svg | 2026 ++++++++++++++++++++++++++ resources/glyphs/Consolas-Italic.ttf | Bin 0 -> 124148 bytes resources/glyphs/Consolas-Italic.woff | Bin 0 -> 64740 bytes resources/glyphs/Consolas.eot | Bin 0 -> 118537 bytes resources/glyphs/Consolas.svg | 1899 ++++++++++++++++++++++++ resources/glyphs/Consolas.ttf | Bin 0 -> 118367 bytes resources/glyphs/Consolas.woff | Bin 0 -> 59696 bytes tufte.css | 6 +- 18 files changed, 5944 insertions(+), 20 deletions(-) create mode 100644 github.css create mode 100644 resources/glyphs/Consolas-Bold.eot create mode 100644 resources/glyphs/Consolas-Bold.svg create mode 100644 resources/glyphs/Consolas-Bold.ttf create mode 100644 resources/glyphs/Consolas-Bold.woff create mode 100644 resources/glyphs/Consolas-Italic.eot create mode 100644 resources/glyphs/Consolas-Italic.svg create mode 100644 resources/glyphs/Consolas-Italic.ttf create mode 100644 resources/glyphs/Consolas-Italic.woff create mode 100644 resources/glyphs/Consolas.eot create mode 100644 resources/glyphs/Consolas.svg create mode 100644 resources/glyphs/Consolas.ttf create mode 100644 resources/glyphs/Consolas.woff diff --git a/_includes/head.html b/_includes/head.html index 43e040e..1bc372b 100644 --- a/_includes/head.html +++ b/_includes/head.html @@ -13,6 +13,7 @@ + diff --git a/_layouts/default.html b/_layouts/default.html index 93461ec..d58d069 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -2,19 +2,21 @@ {% include head.html %} + +
+
+
+ - - - - -
-
- {{ content }} +
+
+ {{ content }} +
-
- {% include footer.html %} - - + {% include footer.html %} +
+
+ diff --git a/_posts/2016-10-16-welcome-to-jekyll.markdown b/_posts/2016-10-16-welcome-to-jekyll.markdown index 4544109..ee2810b 100644 --- a/_posts/2016-10-16-welcome-to-jekyll.markdown +++ b/_posts/2016-10-16-welcome-to-jekyll.markdown @@ -11,13 +11,13 @@ To add new posts, simply add a file in the `_posts` directory that follows the c Jekyll also offers powerful support for code snippets: -{% highlight ruby %} +```ruby def print_hi(name) puts "Hi, #{name}" end print_hi('Tom') #=> prints 'Hi, Tom' to STDOUT. -{% endhighlight %} +``` Check out the [Jekyll docs][jekyll-docs] for more info on how to get the most out of Jekyll. File all bugs/feature requests at [Jekyll’s GitHub repo][jekyll-gh]. If you have questions, you can ask them on [Jekyll Talk][jekyll-talk]. diff --git a/custom.css b/custom.css index 641b4fe..c4cbb8e 100644 --- a/custom.css +++ b/custom.css @@ -1,7 +1,18 @@ --- --- -html { font-size: 14px; } +/*html { font-size: 14px; }*/ + + +body { + margin: auto; +} + +.topbar { + background: #F3F3F3; + height: 70px; + width: 100%; +} h2, h3 { font-family: 'Fira Sans'; @@ -21,10 +32,10 @@ h2, h3 { position: relative; /*left: 10px;*/ line-height: 1.6em; - background: #ffdb00; + /*background: #ffdb00; -webkit-box-shadow: -10px 0px 0px #ffdb00, 10px 0px 0px #ffdb00; box-shadow: -10px 0px 0px #ffdb00, 10px 0px 0px #ffdb00; - box-decoration-break: clone; + box-decoration-break: clone;*/ } .author { @@ -44,4 +55,29 @@ h2, h3 { text-transform: uppercase; font-weight: 900; font-style: normal; -} \ No newline at end of file +} + +@font-face { + font-family: 'Consolas'; + src: url('{{ site.baseurl }}/resources/glyphs/Consolas.eot?#iefix') format('embedded-opentype'), url('{{ site.baseurl }}/resources/glyphs/Consolas.woff') format('woff'), url('{{ site.baseurl }}/resources/glyphs/Consolas.ttf') format('truetype'), url('{{ site.baseurl }}/resources/glyphs/Consolas.svg#Consolas') format('svg'); + font-weight: normal; + font-style: normal; +} + +@font-face { + font-family: 'Consolas'; + src: url('{{ site.baseurl }}/resources/glyphs/Consolas-Italic.eot?#iefix') format('embedded-opentype'), url('{{ site.baseurl }}/resources/glyphs/Consolas-Italic.woff') format('woff'), url('{{ site.baseurl }}/resources/glyphs/Consolas-Italic.ttf') format('truetype'), url('{{ site.baseurl }}/resources/glyphs/Consolas-Italic.svg#Consolas-Italic') format('svg'); + font-weight: normal; + font-style: italic; +} + +code { + color: #8C9899; + /*background: #F4F4F4;*/ + /*border-radius: 3px;*/ + /*padding: 2px;*/ + /*border: 1px solid #DDDDDD;*/ + /*margin: 0 3px 0 3px;*/ + /*padding: 0 2px 0 2px;*/ +} + diff --git a/github.css b/github.css new file mode 100644 index 0000000..4cf358a --- /dev/null +++ b/github.css @@ -0,0 +1,61 @@ +code .hll { background-color: #ffffcc } +code .c { color: #999988; font-style: italic } /* Comment */ +code .err { color: #a61717; background-color: #e3d2d2 } /* Error */ +code .k { color: #000000; font-weight: bold } /* Keyword */ +code .o { color: #000000; font-weight: bold } /* Operator */ +code .cm { color: #999988; font-style: italic } /* Comment.Multiline */ +code .cp { color: #999999; font-weight: bold; font-style: italic } /* Comment.Preproc */ +code .c1 { color: #999988; font-style: italic } /* Comment.Single */ +code .cs { color: #999999; font-weight: bold; font-style: italic } /* Comment.Special */ +code .gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */ +code .ge { color: #000000; font-style: italic } /* Generic.Emph */ +code .gr { color: #aa0000 } /* Generic.Error */ +code .gh { color: #999999 } /* Generic.Heading */ +code .gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */ +code .go { color: #888888 } /* Generic.Output */ +code .gp { color: #555555 } /* Generic.Prompt */ +code .gs { font-weight: bold } /* Generic.Strong */ +code .gu { color: #aaaaaa } /* Generic.Subheading */ +code .gt { color: #aa0000 } /* Generic.Traceback */ +code .kc { color: #000000; font-weight: bold } /* Keyword.Constant */ +code .kd { color: #000000; font-weight: bold } /* Keyword.Declaration */ +code .kn { color: #000000; font-weight: bold } /* Keyword.Namespace */ +code .kp { color: #000000; font-weight: bold } /* Keyword.Pseudo */ +code .kr { color: #000000; font-weight: bold } /* Keyword.Reserved */ +code .kt { color: #445588; font-weight: bold } /* Keyword.Type */ +code .m { color: #009999 } /* Literal.Number */ +code .s { color: #d01040 } /* Literal.String */ +code .na { color: #008080 } /* Name.Attribute */ +code .nb { color: #0086B3 } /* Name.Builtin */ +code .nc { color: #445588; font-weight: bold } /* Name.Class */ +code .no { color: #008080 } /* Name.Constant */ +code .nd { color: #3c5d5d; font-weight: bold } /* Name.Decorator */ +code .ni { color: #800080 } /* Name.Entity */ +code .ne { color: #990000; font-weight: bold } /* Name.Exception */ +code .nf { color: #990000; font-weight: bold } /* Name.Function */ +code .nl { color: #990000; font-weight: bold } /* Name.Label */ +code .nn { color: #555555 } /* Name.Namespace */ +code .nt { color: #000080 } /* Name.Tag */ +code .nv { color: #008080 } /* Name.Variable */ +code .ow { color: #000000; font-weight: bold } /* Operator.Word */ +code .w { color: #bbbbbb } /* Text.Whitespace */ +code .mf { color: #009999 } /* Literal.Number.Float */ +code .mh { color: #009999 } /* Literal.Number.Hex */ +code .mi { color: #009999 } /* Literal.Number.Integer */ +code .mo { color: #009999 } /* Literal.Number.Oct */ +code .sb { color: #d01040 } /* Literal.String.Backtick */ +code .sc { color: #d01040 } /* Literal.String.Char */ +code .sd { color: #d01040 } /* Literal.String.Doc */ +code .s2 { color: #d01040 } /* Literal.String.Double */ +code .se { color: #d01040 } /* Literal.String.Escape */ +code .sh { color: #d01040 } /* Literal.String.Heredoc */ +code .si { color: #d01040 } /* Literal.String.Interpol */ +code .sx { color: #d01040 } /* Literal.String.Other */ +code .sr { color: #009926 } /* Literal.String.Regex */ +code .s1 { color: #d01040 } /* Literal.String.Single */ +code .ss { color: #990073 } /* Literal.String.Symbol */ +code .bp { color: #999999 } /* Name.Builtin.Pseudo */ +code .vc { color: #008080 } /* Name.Variable.Class */ +code .vg { color: #008080 } /* Name.Variable.Global */ +code .vi { color: #008080 } /* Name.Variable.Instance */ +code .il { color: #009999 } /* Literal.Number.Integer.Long */ \ No newline at end of file diff --git a/resources/glyphs/Consolas-Bold.eot b/resources/glyphs/Consolas-Bold.eot new file mode 100644 index 0000000..84f45cf Binary files /dev/null and b/resources/glyphs/Consolas-Bold.eot differ diff --git a/resources/glyphs/Consolas-Bold.svg b/resources/glyphs/Consolas-Bold.svg new file mode 100644 index 0000000..d9e28ba --- /dev/null +++ b/resources/glyphs/Consolas-Bold.svg @@ -0,0 +1,1899 @@ + + + + +Created by FontForge 20090622 at Sat Jun 11 11:52:35 2016 + By deploy user +© 2005 Microsoft Corporation. All Rights Reserved. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/resources/glyphs/Consolas-Bold.ttf b/resources/glyphs/Consolas-Bold.ttf new file mode 100644 index 0000000..c94546b Binary files /dev/null and b/resources/glyphs/Consolas-Bold.ttf differ diff --git a/resources/glyphs/Consolas-Bold.woff b/resources/glyphs/Consolas-Bold.woff new file mode 100644 index 0000000..26da7ba Binary files /dev/null and b/resources/glyphs/Consolas-Bold.woff differ diff --git a/resources/glyphs/Consolas-Italic.eot b/resources/glyphs/Consolas-Italic.eot new file mode 100644 index 0000000..9f9745e Binary files /dev/null and b/resources/glyphs/Consolas-Italic.eot differ diff --git a/resources/glyphs/Consolas-Italic.svg b/resources/glyphs/Consolas-Italic.svg new file mode 100644 index 0000000..5ecff23 --- /dev/null +++ b/resources/glyphs/Consolas-Italic.svg @@ -0,0 +1,2026 @@ + + + + +Created by FontForge 20090622 at Sat Jun 11 11:49:54 2016 + By deploy user +© 2005 Microsoft Corporation. All Rights Reserved. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/resources/glyphs/Consolas-Italic.ttf b/resources/glyphs/Consolas-Italic.ttf new file mode 100644 index 0000000..f54bdcd Binary files /dev/null and b/resources/glyphs/Consolas-Italic.ttf differ diff --git a/resources/glyphs/Consolas-Italic.woff b/resources/glyphs/Consolas-Italic.woff new file mode 100644 index 0000000..7c48a90 Binary files /dev/null and b/resources/glyphs/Consolas-Italic.woff differ diff --git a/resources/glyphs/Consolas.eot b/resources/glyphs/Consolas.eot new file mode 100644 index 0000000..c125de0 Binary files /dev/null and b/resources/glyphs/Consolas.eot differ diff --git a/resources/glyphs/Consolas.svg b/resources/glyphs/Consolas.svg new file mode 100644 index 0000000..b03524a --- /dev/null +++ b/resources/glyphs/Consolas.svg @@ -0,0 +1,1899 @@ + + + + +Created by FontForge 20090622 at Sat Jun 11 11:46:40 2016 + By deploy user +© 2005 Microsoft Corporation. All Rights Reserved. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/resources/glyphs/Consolas.ttf b/resources/glyphs/Consolas.ttf new file mode 100644 index 0000000..fe16660 Binary files /dev/null and b/resources/glyphs/Consolas.ttf differ diff --git a/resources/glyphs/Consolas.woff b/resources/glyphs/Consolas.woff new file mode 100644 index 0000000..569fc7b Binary files /dev/null and b/resources/glyphs/Consolas.woff differ diff --git a/tufte.css b/tufte.css index 878f11f..6718898 100755 --- a/tufte.css +++ b/tufte.css @@ -30,10 +30,10 @@ /* Tufte CSS styles */ html { font-size: 15px; } -body { width: 87.5%; +.body-wrap { width: 87.5%; + padding-left: 12.5%; margin-left: auto; margin-right: auto; - padding-left: 12.5%; font-family: et-book, Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Georgia, serif; /*background-color: #fffff8;*/ background-color: #ffffff; @@ -230,7 +230,7 @@ label.sidenote-number { display: inline; } label.margin-toggle:not(.sidenote-number) { display: none; } -@media (max-width: 760px) { body { width: 84%; +@media (max-width: 760px) { .body-wrap { width: 84%; padding-left: 8%; padding-right: 8%; } p, footer { width: 100%; } -- cgit v1.2.3