├── .gitignore ├── README.md ├── _config.yml ├── _layouts ├── default.html └── post.html ├── _posts ├── 2014-01-07-welcome-to-jekyll.md ├── 2014-01-08-welcome-to-jekyll.md └── 2014-01-09-welcome-to-jekyll.md ├── css ├── main.css ├── reset.css └── syntax.css ├── images ├── cover.jpg ├── icon_home.png ├── icon_home_hover.png ├── screenshot1.png └── screenshot2.png └── index.html /.gitignore: -------------------------------------------------------------------------------- 1 | _site -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | Strange Case 2 | ============ 3 | 4 | Strange Case is a simple, clean and responsive theme for Jekyll. 5 | 6 | 7 | ### Demo 8 | 9 | [Demo](http://thephuse.github.io/strange_case/) 10 | 11 | ### Overview 12 | 13 | * Fixed Sidebar with cover image 14 | * Minimal design 15 | * Easy to configure 16 | * Browser support: Latest releases of Chrome, Safari, Firefox, Mobile Safari and IE 9+. 17 | 18 | ### Screenshots 19 | 20 | ![screenshot](/images/screenshot1.png) 21 | ![screenshot](/images/screenshot2.png) 22 | 23 | ### Setup 24 | 25 | 1. Install [Jekyll](http://jekyllrb.com/) 26 | 2. Fork or [download](https://github.com/thephuse/strange_case) this theme repo 27 | 3. Edit the `_config.yml` file (if you make any additional changes to this file, you will need to stop and restart your command in the next step) 28 | 4. From your command line, switch to your site directory and build using `jekyll serve` 29 | 5. Site will be accessible by viewing http://localhost:4000/strange_case/ 30 | 31 | ### Download 32 | 33 | [Download](https://github.com/thephuse/strange_case) 34 | 35 | ### License 36 | * [MIT](http://opensource.org/licenses/MIT) -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | # Site settings 2 | title: 'Strange Case' # Your Title 3 | tagline: 'Twisted tales to make you shudder' # A brief tagline for your site 4 | sidebar_image: /images/cover.jpg 5 | 6 | # Build settings 7 | markdown: redcarpet 8 | highlighter: pygments 9 | baseurl: /strange_case # the subpath of your site, e.g. /blog/ 10 | -------------------------------------------------------------------------------- /_layouts/default.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | {{ site.title + page.title }} 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | {{ content }} 22 | 23 | 24 | -------------------------------------------------------------------------------- /_layouts/post.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | --- 4 |
5 |
6 | 7 |
8 |

{{ page.title }}

9 |
    10 |
  • 11 | 12 | Published 13 | 14 | {{ page.date | date_to_string }} 15 |
  • 16 |
  • 17 | 18 | Category 19 | 20 | {{ page.categories }} 21 |
  • 22 |
23 |
24 | 40 |
41 |
42 | 43 |
44 |
45 | {{ content }} 46 |
47 |
48 | -------------------------------------------------------------------------------- /_posts/2014-01-07-welcome-to-jekyll.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: post 3 | title: "Strange Case of Dr Jekyll and Mr Hyde" 4 | date: 2014-01-07 12:00:00 5 | categories: jekyll 6 | featured_image: /images/cover.jpg 7 | --- 8 | 9 | Strange Case of Dr Jekyll and Mr Hyde is the original title of a novella written by the Scottish author [Robert Louis Stevenson]() that was first published in 1886. The work is commonly known today as The Strange Case of Dr. Jekyll and Mr. Hyde, Dr. Jekyll and Mr. Hyde, or simply Jekyll & Hyde. It is about a London lawyer named Gabriel John Utterson who investigates strange occurrences between his old friend, Dr. Henry Jekyll, and the evil Edward Hyde. 10 | 11 | ## Inspiration & Writing 12 | 13 | Stevenson had long been intrigued by the idea of how personalities can affect a human and how to incorporate the interplay of good and evil into a story. While still a teenager, he developed a script for a play about Deacon Brodie, which he later reworked with the help of W. E. Henley and saw produced for the first time in 1882. In early 1884 he wrote the short story "Markheim", which he revised in 1884 for publication in a Christmas annual. One night in late September or early October 1885, possibly while he was still revising "Markheim," Stevenson had a dream, and upon wakening had the intuition for two or three scenes that would appear in the story. Biographer Graham Balfour quoted Stevenson's wife Fanny Stevenson: 14 | 15 | > "In the small hours of one morning, I was awakened by cries of horror from Louis. Thinking he had a nightmare, I awakened him. He said angrily: 'Why did you wake me? I was dreaming a fine bogey tale.' I had awakened him at the first transformation scene." 16 | 17 | ## Main Characters 18 | 19 | The story revolves around **8 main characters**: 20 | 21 | - Dr. Henry Jekyll/Edward Hyde 22 | - Mr. Gabriel John Utterson 23 | - Richard Enfield 24 | - Dr. Hastie Lanyon 25 | - Mr. Poole 26 | - Inspector Newcomen 27 | - Sir Danvers Carew 28 | - Maid 29 | 30 | ## Reception 31 | 32 | Strange Case of Dr Jekyll and Mr Hyde was an immediate success and is one of Stevenson's best-selling works. Stage adaptations began in Boston and London and soon moved all across England and then towards his home Scotland within a year of its publication and it has gone on to inspire scores of major film and stage performances. 33 | 34 | The Strange Case of Dr Jekyll and Mr Hyde was initially sold as a paperback for one shilling in the UK and one dollar in the U.S. The American publisher issued the book on 5 January 1886, four days before the first appearance of the UK edition issued by Longmans; Scribner's published 3000 copies, only 1250 of them bound in cloth. Initially stores would not stock it until a review appeared in The Times, on 25 January 1886, giving it a favourable reception. Within the next six months, close to forty thousand copies were sold. The book's success was probably due more to the "moral instincts of the public" than any perception of its artistic merits; it was widely read by those who never otherwise read fiction, quoted in pulpit sermons and in religious papers. By 1901 it was estimated to have sold over 250,000 copies. 35 | -------------------------------------------------------------------------------- /_posts/2014-01-08-welcome-to-jekyll.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: post 3 | title: "Strange Case of Dr Jekyll and Mr Hyde" 4 | date: 2014-01-08 12:00:00 5 | categories: jekyll 6 | featured_image: /images/cover.jpg 7 | --- 8 | 9 | Strange Case of Dr Jekyll and Mr Hyde is the original title of a novella written by the Scottish author [Robert Louis Stevenson]() that was first published in 1886. The work is commonly known today as The Strange Case of Dr. Jekyll and Mr. Hyde, Dr. Jekyll and Mr. Hyde, or simply Jekyll & Hyde. It is about a London lawyer named Gabriel John Utterson who investigates strange occurrences between his old friend, Dr. Henry Jekyll, and the evil Edward Hyde. 10 | 11 | ## Inspiration & Writing 12 | 13 | Stevenson had long been intrigued by the idea of how personalities can affect a human and how to incorporate the interplay of good and evil into a story. While still a teenager, he developed a script for a play about Deacon Brodie, which he later reworked with the help of W. E. Henley and saw produced for the first time in 1882. In early 1884 he wrote the short story "Markheim", which he revised in 1884 for publication in a Christmas annual. One night in late September or early October 1885, possibly while he was still revising "Markheim," Stevenson had a dream, and upon wakening had the intuition for two or three scenes that would appear in the story. Biographer Graham Balfour quoted Stevenson's wife Fanny Stevenson: 14 | 15 | > "In the small hours of one morning, I was awakened by cries of horror from Louis. Thinking he had a nightmare, I awakened him. He said angrily: 'Why did you wake me? I was dreaming a fine bogey tale.' I had awakened him at the first transformation scene." 16 | 17 | ## Main Characters 18 | 19 | The story revolves around **8 main characters**: 20 | 21 | - Dr. Henry Jekyll/Edward Hyde 22 | - Mr. Gabriel John Utterson 23 | - Richard Enfield 24 | - Dr. Hastie Lanyon 25 | - Mr. Poole 26 | - Inspector Newcomen 27 | - Sir Danvers Carew 28 | - Maid 29 | 30 | ## Reception 31 | 32 | Strange Case of Dr Jekyll and Mr Hyde was an immediate success and is one of Stevenson's best-selling works. Stage adaptations began in Boston and London and soon moved all across England and then towards his home Scotland within a year of its publication and it has gone on to inspire scores of major film and stage performances. 33 | 34 | The Strange Case of Dr Jekyll and Mr Hyde was initially sold as a paperback for one shilling in the UK and one dollar in the U.S. The American publisher issued the book on 5 January 1886, four days before the first appearance of the UK edition issued by Longmans; Scribner's published 3000 copies, only 1250 of them bound in cloth. Initially stores would not stock it until a review appeared in The Times, on 25 January 1886, giving it a favourable reception. Within the next six months, close to forty thousand copies were sold. The book's success was probably due more to the "moral instincts of the public" than any perception of its artistic merits; it was widely read by those who never otherwise read fiction, quoted in pulpit sermons and in religious papers. By 1901 it was estimated to have sold over 250,000 copies. 35 | -------------------------------------------------------------------------------- /_posts/2014-01-09-welcome-to-jekyll.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: post 3 | title: "Strange Case of Dr Jekyll and Mr Hyde" 4 | date: 2014-01-09 12:00:00 5 | categories: jekyll 6 | featured_image: /images/cover.jpg 7 | --- 8 | 9 | Strange Case of Dr Jekyll and Mr Hyde is the original title of a novella written by the Scottish author [Robert Louis Stevenson]() that was first published in 1886. The work is commonly known today as The Strange Case of Dr. Jekyll and Mr. Hyde, Dr. Jekyll and Mr. Hyde, or simply Jekyll & Hyde. It is about a London lawyer named Gabriel John Utterson who investigates strange occurrences between his old friend, Dr. Henry Jekyll, and the evil Edward Hyde. 10 | 11 | ## Inspiration & Writing 12 | 13 | Stevenson had long been intrigued by the idea of how personalities can affect a human and how to incorporate the interplay of good and evil into a story. While still a teenager, he developed a script for a play about Deacon Brodie, which he later reworked with the help of W. E. Henley and saw produced for the first time in 1882. In early 1884 he wrote the short story "Markheim", which he revised in 1884 for publication in a Christmas annual. One night in late September or early October 1885, possibly while he was still revising "Markheim," Stevenson had a dream, and upon wakening had the intuition for two or three scenes that would appear in the story. Biographer Graham Balfour quoted Stevenson's wife Fanny Stevenson: 14 | 15 | > "In the small hours of one morning, I was awakened by cries of horror from Louis. Thinking he had a nightmare, I awakened him. He said angrily: 'Why did you wake me? I was dreaming a fine bogey tale.' I had awakened him at the first transformation scene." 16 | 17 | ## Main Characters 18 | 19 | The story revolves around **8 main characters**: 20 | 21 | - Dr. Henry Jekyll/Edward Hyde 22 | - Mr. Gabriel John Utterson 23 | - Richard Enfield 24 | - Dr. Hastie Lanyon 25 | - Mr. Poole 26 | - Inspector Newcomen 27 | - Sir Danvers Carew 28 | - Maid 29 | 30 | ## Reception 31 | 32 | Strange Case of Dr Jekyll and Mr Hyde was an immediate success and is one of Stevenson's best-selling works. Stage adaptations began in Boston and London and soon moved all across England and then towards his home Scotland within a year of its publication and it has gone on to inspire scores of major film and stage performances. 33 | 34 | The Strange Case of Dr Jekyll and Mr Hyde was initially sold as a paperback for one shilling in the UK and one dollar in the U.S. The American publisher issued the book on 5 January 1886, four days before the first appearance of the UK edition issued by Longmans; Scribner's published 3000 copies, only 1250 of them bound in cloth. Initially stores would not stock it until a review appeared in The Times, on 25 January 1886, giving it a favourable reception. Within the next six months, close to forty thousand copies were sold. The book's success was probably due more to the "moral instincts of the public" than any perception of its artistic merits; it was widely read by those who never otherwise read fiction, quoted in pulpit sermons and in religious papers. By 1901 it was estimated to have sold over 250,000 copies. 35 | -------------------------------------------------------------------------------- /css/main.css: -------------------------------------------------------------------------------- 1 | *, 2 | *:before, 3 | *:after { 4 | -webkit-box-sizing: border-box; 5 | -moz-box-sizing: border-box; 6 | box-sizing: border-box; 7 | } 8 | 9 | html, 10 | body { 11 | height: 100%; 12 | } 13 | 14 | body { 15 | overflow-x: hidden; 16 | font-family: 'Bitter', serif; 17 | font-size: 16px; 18 | line-height: 28px; 19 | color: #222; 20 | font-weight: 400; 21 | white-space: nowrap; 22 | } 23 | 24 | /* Type */ 25 | 26 | h1, 27 | h2 { 28 | font-family: 'Open Sans', sans-serif; 29 | } 30 | 31 | h1 { 32 | line-height: 1.3; 33 | font-weight: 600; 34 | font-size: 60px; 35 | color: #FFF; 36 | } 37 | 38 | h2 { 39 | font-weight: 600; 40 | font-size: 24px; 41 | margin-bottom: 18px; 42 | margin-top: 36px; 43 | } 44 | 45 | blockquote { 46 | border-left: 5px solid #ddd; 47 | margin: 40px 1em; 48 | padding-left: 12px; 49 | font-style: italic; 50 | color: #666; 51 | } 52 | 53 | @media (max-width: 960px) { 54 | h1 { 55 | font-size: 30px; 56 | } 57 | header .container ul.meta { 58 | margin-bottom: 0; 59 | } 60 | } 61 | 62 | /* Header & Article */ 63 | 64 | header, 65 | article { 66 | display: inline-block; 67 | vertical-align: top; 68 | height: 100%; 69 | overflow: scroll; 70 | white-space: normal; 71 | } 72 | 73 | .container { 74 | padding: 100px 50px; 75 | width: 100%; 76 | } 77 | 78 | @media (max-width: 960px) { 79 | article { 80 | display: block; 81 | } 82 | .container { 83 | padding: 25px; 84 | } 85 | } 86 | 87 | /* Header */ 88 | 89 | header { 90 | position: relative; 91 | width: 35%; 92 | background-repeat: no-repeat; 93 | background-position: center; 94 | -webkit-background-size: cover; 95 | -moz-background-size: cover; 96 | -o-background-size: cover; 97 | background-size: cover; 98 | -webkit-filter: grayscale(1); 99 | filter: grayscale(1); 100 | overflow: hidden; 101 | } 102 | 103 | @media (max-width: 960px) { 104 | header { 105 | width: 100%; 106 | } 107 | header { 108 | height: auto; 109 | } 110 | } 111 | 112 | header:after { 113 | content: ""; 114 | position: absolute; 115 | top: 0; 116 | right: 0; 117 | bottom: 0; 118 | left: 0; 119 | background-color: rgba(0, 0, 0, 0.5); 120 | z-index: -1; 121 | } 122 | 123 | header .container { 124 | padding: 0 50px; 125 | z-index: 1; 126 | } 127 | 128 | 129 | @media screen and (min-width: 961px){ 130 | #home-header .container { 131 | position: absolute; 132 | top: 50%; 133 | left: 50%; 134 | -webkit-transform: translate(-50%, -50%); 135 | -ms-transform: translate(-50%, -50%); 136 | transform: translate(-50%, -50%); 137 | } 138 | 139 | header .container { 140 | position: absolute; 141 | top: 0; 142 | } 143 | header .container.post-container { 144 | padding: 0; 145 | position: relative; 146 | height: 100%; 147 | } 148 | 149 | header .post-container .inner-container { 150 | position: absolute; 151 | top: 50%; 152 | transform: translateY(-50%); 153 | -webkit-transform: translateY(-50%); 154 | -ms-transform: translateY(-50%); 155 | padding: 0 50px; 156 | } 157 | } 158 | 159 | @media screen and (max-width: 960px){ 160 | #home-header .container { 161 | padding: 100px 50px; 162 | } 163 | 164 | header .container { 165 | padding: 80px 0 10px; 166 | } 167 | header .container .inner-container { 168 | padding: 0 50px; 169 | } 170 | } 171 | 172 | header .home_button { 173 | position: absolute; 174 | top: 10px; 175 | left: 10px; 176 | display: block; 177 | width: 21px; 178 | height: 18px; 179 | border-radius: 4px; 180 | border: 1px solid rgba(255, 255, 255, 0.3); 181 | line-height: 40px; 182 | font-size: 14px; 183 | color: rgba(255, 255, 255, 0.5); 184 | text-decoration: none; 185 | text-align: center; 186 | background-image: url(../images/icon_home.png); 187 | background-position: center; 188 | background-repeat: no-repeat; 189 | padding: 20px; 190 | transition: background 300ms linear; 191 | -webkit-transition: background 300ms linear; 192 | } 193 | 194 | header .home_button:hover { 195 | background: #fff; 196 | background-image: url(../images/icon_home_hover.png); 197 | background-position: center; 198 | background-repeat: no-repeat; 199 | color: #ce2323; 200 | transition: background 300ms linear; 201 | -webkit-transition: background 300ms linear; 202 | } 203 | 204 | header ul.meta { 205 | margin-top: 45px; 206 | margin-bottom: 10px; 207 | } 208 | 209 | @media screen and (max-width: 767px){ 210 | header ul.meta { 211 | margin-top: 10px; 212 | } 213 | } 214 | 215 | #home-header ul.meta { 216 | margin-top: 15px; 217 | } 218 | 219 | header ul.meta li { 220 | display: inline-block; 221 | margin-right: 25px; 222 | line-height: 30px; 223 | color: #fff; 224 | } 225 | 226 | header ul.meta li span { 227 | margin-right: 10px; 228 | font-style: italic; 229 | color: rgba(255, 255, 255, .5); 230 | } 231 | 232 | /* Pagination */ 233 | 234 | @media screen and (min-width: 961px){ 235 | .pagination { 236 | position: absolute; 237 | right: 10px; 238 | bottom: 10px; 239 | left: 10px; 240 | } 241 | } 242 | 243 | @media screen and (max-width: 960px){ 244 | .pagination { 245 | margin-top: 40px; 246 | padding: 0 10px; 247 | } 248 | } 249 | 250 | .pagination:after { 251 | content: ""; 252 | display: block; 253 | height: 0; 254 | width: 0; 255 | clear: both; 256 | } 257 | 258 | .previous { 259 | float: left; 260 | } 261 | 262 | .next { 263 | float: right; 264 | } 265 | 266 | .pagination a { 267 | padding: 10px 20px; 268 | border-radius: 4px; 269 | border: 1px solid rgba(255, 255, 255, 0.3); 270 | line-height: 40px; 271 | font-family: 'Open Sans', sans-serif; 272 | font-size: 12px; 273 | font-weight: 600; 274 | color: rgba(255, 255, 255, 0.5); 275 | text-transform: uppercase; 276 | text-decoration: none; 277 | letter-spacing: 1px; 278 | } 279 | 280 | .pagination a:hover { 281 | background: #fff; 282 | color: #ce2323; 283 | } 284 | 285 | /* Article */ 286 | 287 | article { 288 | width: 65%; 289 | overflow-x: hidden; 290 | } 291 | 292 | 293 | article .container { 294 | padding-top: 80px; 295 | } 296 | 297 | @media (max-width: 960px) { 298 | article { 299 | width: 100%; 300 | overflow: visible; 301 | } 302 | article .container { 303 | padding: 25px !important; 304 | } 305 | } 306 | 307 | article p { 308 | margin-bottom: 1em; 309 | } 310 | 311 | article li { 312 | margin-left: 3em; 313 | margin-bottom: 9px; 314 | list-style-type: disc; 315 | } 316 | 317 | @media (max-width: 960px) { 318 | article li { 319 | margin-left: 0; 320 | } 321 | } 322 | 323 | article a { 324 | color: #CE2323; 325 | text-decoration: none; 326 | } 327 | 328 | article a:hover { 329 | text-decoration: underline; 330 | } 331 | 332 | /* Posts List */ 333 | 334 | ul.posts li { 335 | list-style-type: none; 336 | border-bottom: 1px solid #eeeeee; 337 | } 338 | 339 | ul.posts .meta { 340 | display: block; 341 | margin-bottom: 16px; 342 | color: #8d8d8d; 343 | } 344 | 345 | ul.posts p { 346 | margin-bottom: 36px; 347 | } 348 | -------------------------------------------------------------------------------- /css/reset.css: -------------------------------------------------------------------------------- 1 | /* http://meyerweb.com/eric/tools/css/reset/ 2 | v2.0 | 20110126 3 | License: none (public domain) 4 | */ 5 | 6 | html, body, div, span, applet, object, iframe, 7 | h1, h2, h3, h4, h5, h6, p, blockquote, pre, 8 | a, abbr, acronym, address, big, cite, code, 9 | del, dfn, em, img, ins, kbd, q, s, samp, 10 | small, strike, strong, sub, sup, tt, var, 11 | b, u, i, center, 12 | dl, dt, dd, ol, ul, li, 13 | fieldset, form, label, legend, 14 | table, caption, tbody, tfoot, thead, tr, th, td, 15 | article, aside, canvas, details, embed, 16 | figure, figcaption, footer, header, hgroup, 17 | menu, nav, output, ruby, section, summary, 18 | time, mark, audio, video { 19 | margin: 0; 20 | padding: 0; 21 | border: 0; 22 | font-size: 100%; 23 | font: inherit; 24 | vertical-align: baseline; 25 | } 26 | /* HTML5 display-role reset for older browsers */ 27 | article, aside, details, figcaption, figure, 28 | footer, header, hgroup, menu, nav, section { 29 | display: block; 30 | } 31 | body { 32 | line-height: 1; 33 | } 34 | ol, ul { 35 | list-style: none; 36 | } 37 | blockquote, q { 38 | quotes: none; 39 | } 40 | blockquote:before, blockquote:after, 41 | q:before, q:after { 42 | content: ''; 43 | content: none; 44 | } 45 | table { 46 | border-collapse: collapse; 47 | border-spacing: 0; 48 | } -------------------------------------------------------------------------------- /css/syntax.css: -------------------------------------------------------------------------------- 1 | .highlight { background: #ffffff; } 2 | .highlight .c { color: #999988; font-style: italic } /* Comment */ 3 | .highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */ 4 | .highlight .k { font-weight: bold } /* Keyword */ 5 | .highlight .o { font-weight: bold } /* Operator */ 6 | .highlight .cm { color: #999988; font-style: italic } /* Comment.Multiline */ 7 | .highlight .cp { color: #999999; font-weight: bold } /* Comment.Preproc */ 8 | .highlight .c1 { color: #999988; font-style: italic } /* Comment.Single */ 9 | .highlight .cs { color: #999999; font-weight: bold; font-style: italic } /* Comment.Special */ 10 | .highlight .gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */ 11 | .highlight .gd .x { color: #000000; background-color: #ffaaaa } /* Generic.Deleted.Specific */ 12 | .highlight .ge { font-style: italic } /* Generic.Emph */ 13 | .highlight .gr { color: #aa0000 } /* Generic.Error */ 14 | .highlight .gh { color: #999999 } /* Generic.Heading */ 15 | .highlight .gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */ 16 | .highlight .gi .x { color: #000000; background-color: #aaffaa } /* Generic.Inserted.Specific */ 17 | .highlight .go { color: #888888 } /* Generic.Output */ 18 | .highlight .gp { color: #555555 } /* Generic.Prompt */ 19 | .highlight .gs { font-weight: bold } /* Generic.Strong */ 20 | .highlight .gu { color: #aaaaaa } /* Generic.Subheading */ 21 | .highlight .gt { color: #aa0000 } /* Generic.Traceback */ 22 | .highlight .kc { font-weight: bold } /* Keyword.Constant */ 23 | .highlight .kd { font-weight: bold } /* Keyword.Declaration */ 24 | .highlight .kp { font-weight: bold } /* Keyword.Pseudo */ 25 | .highlight .kr { font-weight: bold } /* Keyword.Reserved */ 26 | .highlight .kt { color: #445588; font-weight: bold } /* Keyword.Type */ 27 | .highlight .m { color: #009999 } /* Literal.Number */ 28 | .highlight .s { color: #d14 } /* Literal.String */ 29 | .highlight .na { color: #008080 } /* Name.Attribute */ 30 | .highlight .nb { color: #0086B3 } /* Name.Builtin */ 31 | .highlight .nc { color: #445588; font-weight: bold } /* Name.Class */ 32 | .highlight .no { color: #008080 } /* Name.Constant */ 33 | .highlight .ni { color: #800080 } /* Name.Entity */ 34 | .highlight .ne { color: #990000; font-weight: bold } /* Name.Exception */ 35 | .highlight .nf { color: #990000; font-weight: bold } /* Name.Function */ 36 | .highlight .nn { color: #555555 } /* Name.Namespace */ 37 | .highlight .nt { color: #000080 } /* Name.Tag */ 38 | .highlight .nv { color: #008080 } /* Name.Variable */ 39 | .highlight .ow { font-weight: bold } /* Operator.Word */ 40 | .highlight .w { color: #bbbbbb } /* Text.Whitespace */ 41 | .highlight .mf { color: #009999 } /* Literal.Number.Float */ 42 | .highlight .mh { color: #009999 } /* Literal.Number.Hex */ 43 | .highlight .mi { color: #009999 } /* Literal.Number.Integer */ 44 | .highlight .mo { color: #009999 } /* Literal.Number.Oct */ 45 | .highlight .sb { color: #d14 } /* Literal.String.Backtick */ 46 | .highlight .sc { color: #d14 } /* Literal.String.Char */ 47 | .highlight .sd { color: #d14 } /* Literal.String.Doc */ 48 | .highlight .s2 { color: #d14 } /* Literal.String.Double */ 49 | .highlight .se { color: #d14 } /* Literal.String.Escape */ 50 | .highlight .sh { color: #d14 } /* Literal.String.Heredoc */ 51 | .highlight .si { color: #d14 } /* Literal.String.Interpol */ 52 | .highlight .sx { color: #d14 } /* Literal.String.Other */ 53 | .highlight .sr { color: #009926 } /* Literal.String.Regex */ 54 | .highlight .s1 { color: #d14 } /* Literal.String.Single */ 55 | .highlight .ss { color: #990073 } /* Literal.String.Symbol */ 56 | .highlight .bp { color: #999999 } /* Name.Builtin.Pseudo */ 57 | .highlight .vc { color: #008080 } /* Name.Variable.Class */ 58 | .highlight .vg { color: #008080 } /* Name.Variable.Global */ 59 | .highlight .vi { color: #008080 } /* Name.Variable.Instance */ 60 | .highlight .il { color: #009999 } /* Literal.Number.Integer.Long */ 61 | -------------------------------------------------------------------------------- /images/cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thephuse/strange_case/40d5a7b109e45399f5803a57d903001f234d31e0/images/cover.jpg -------------------------------------------------------------------------------- /images/icon_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thephuse/strange_case/40d5a7b109e45399f5803a57d903001f234d31e0/images/icon_home.png -------------------------------------------------------------------------------- /images/icon_home_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thephuse/strange_case/40d5a7b109e45399f5803a57d903001f234d31e0/images/icon_home_hover.png -------------------------------------------------------------------------------- /images/screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thephuse/strange_case/40d5a7b109e45399f5803a57d903001f234d31e0/images/screenshot1.png -------------------------------------------------------------------------------- /images/screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thephuse/strange_case/40d5a7b109e45399f5803a57d903001f234d31e0/images/screenshot2.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | --- 4 |
5 |
6 |

{{ site.title }}

7 |
14 |
15 |
16 |
17 | 28 |
29 |
30 | --------------------------------------------------------------------------------