summaryrefslogtreecommitdiff
path: root/_includes
diff options
context:
space:
mode:
authorBen Burwell <ben@benburwell.com>2018-02-03 13:40:30 -0500
committerBen Burwell <ben@benburwell.com>2018-02-03 13:40:30 -0500
commit208821cda116bab74e657d6f0c2cd7c23eff9610 (patch)
tree2270d719e66c2c45a2cb55f53584795f0cd4f4d3 /_includes
parent72f8e1da25566bb7f9f6df4ff75b5ed0bb015fd2 (diff)
Vastly simplify site
I was getting tired of feeling like I should put things on my website and keep it up to date, so I decided to slim it down significantly (from its already admittedly slim state). No CSS, no JavaScript, just plain old HTML. The posts are staying for now, though I haven't linked to them from anywhere. Thus they won't be easily discoverable, but any links that are out there right now shouldn't break. I've also removed my resume from the site.
Diffstat (limited to '_includes')
-rw-r--r--_includes/site.scss204
1 files changed, 0 insertions, 204 deletions
diff --git a/_includes/site.scss b/_includes/site.scss
deleted file mode 100644
index f82396f..0000000
--- a/_includes/site.scss
+++ /dev/null
@@ -1,204 +0,0 @@
-$background-color: #fafafa;
-$base-text-color: #1A364F;
-$muted-text-color: #687876;
-$light-gray: #9CA395;
-$heading-color: #9E1814;
-$link-color: #2A7F89;
-
-$unit: 9px;
-$monospace: monospace;
-$serif: Palatino, 'Palatino Linotype', 'Palatino LT STD', 'Book Antiqua', 'Georgia', serif;
-
-$container-width: $unit * 100;
-$header-height: $unit * 5;
-$font-size: $unit * 2;
-$date-column-width: 200px;
-
-@mixin container {
- max-width: $container-width;
-}
-
-.muted {
- color: $muted-text-color;
-}
-
-body {
- font-family: $monospace;
- color: $base-text-color;
- font-size: $font-size;
- padding: $font-size;
- margin: 0;
- background-color: $background-color;
-}
-
-header {
- @include container;
- text-align: center;
-
- a.nav-up {
- color: $base-text-color;
- font-size: 3 * $unit;
- font-weight: bold;
-
- &:hover,
- &:focus {
- color: $link-color;
- }
- }
-}
-
-footer {
- @extend .muted;
- padding: $unit;
- text-align: center;
-}
-
-h1,
-h2 {
- @include container;
- color: $heading-color;
- font-weight: bold;
-
- a {
- color: $heading-color;
- }
-}
-
-h1 {
- font-size: 4 * $unit;
-}
-
-h2 {
- font-size: 2 * $unit;
-}
-
-table {
- width: 100%;
-}
-
-td {
- padding: $unit;
-}
-
-p {
- @include container;
- line-height: 1.5;
- margin-bottom: $unit;
- font-family: $serif;
-}
-
-ol, ul {
- @include container;
- font-family: $serif;
-}
-
-li {
- margin-left: 4 * $unit;
- margin-right: 2 * $unit;
- padding: $unit;
-}
-
-pre {
- font-family: $monospace;
- overflow: auto;
- margin: $unit 0;
-}
-
-kbd {
- font-family: $monospace;
-}
-
-code {
- font-family: $monospace;
-}
-
-hr {
- border: none;
- margin: $unit 0;
- text-align: center;
- width: $container-width;
-
- &:after {
- @extend .muted;
- content: '~~~';
- }
-}
-
-.d3container {
- text-align: center;
-}
-
-blockquote {
- font-style: italic;
- p {
- box-sizing: border-box;
- padding: 0 3 * $unit;
- }
-}
-
-a {
- color: $base-text-color;
- text-decoration: underline;
-
- &:hover,
- &:focus {
- color: $link-color;
- outline: none;
- }
-}
-
-time {
- @extend .muted;
-}
-
-aside {
- @extend .muted;
- @include container;
- &>* {
- margin-left: 2 * $unit;
- }
- a {
- color: $muted-text-color;
- }
-}
-
-.text-center {
- @include container;
- text-align: center;
-}
-
-.post {
- @include container;
- margin: 1em;
- font-family: $serif;
- clear: both;
-}
-
-.post-date {
- text-align: right;
- width: $date-column-width;
- float: left;
-}
-
-.post-title {
- padding-left: $date-column-width + 2 * $unit;
-}
-
-.highlight {
- margin: 0;
- padding: 0 $unit;
- font-size: 2 * $unit;
-}
-
-.highlight pre {
- @include container;
-}
-
-.footer-link::after {
- content: ' ~ ';
-}
-
-.footer-link:last-of-type::after {
- content: '';
-}
-