jekyll-lenciel-theme 0.1.8 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (38) hide show
  1. checksums.yaml +4 -4
  2. data/_includes/head.html +4 -4
  3. data/assets/stylesheets/data-table.css +31 -0
  4. data/assets/stylesheets/screen.css +1 -0
  5. metadata +7 -66
  6. data/_sass/_base.scss +0 -5
  7. data/_sass/_partials.scss +0 -8
  8. data/_sass/base/_layout.scss +0 -192
  9. data/_sass/base/_solarized.scss +0 -46
  10. data/_sass/base/_theme.scss +0 -86
  11. data/_sass/base/_typography.scss +0 -162
  12. data/_sass/base/_utilities.scss +0 -28
  13. data/_sass/custom/_article.scss +0 -88
  14. data/_sass/custom/_background.scss +0 -3
  15. data/_sass/custom/_colors.scss +0 -48
  16. data/_sass/custom/_fonts.scss +0 -16
  17. data/_sass/custom/_footer.scss +0 -68
  18. data/_sass/custom/_footnotes.scss +0 -4
  19. data/_sass/custom/_header.scss +0 -11
  20. data/_sass/custom/_icomoon.scss +0 -204
  21. data/_sass/custom/_layout.scss +0 -21
  22. data/_sass/custom/_navigation.scss +0 -50
  23. data/_sass/custom/_styles.scss +0 -81
  24. data/_sass/custom/_tablestyle.scss +0 -37
  25. data/_sass/partials/_archive.scss +0 -72
  26. data/_sass/partials/_blog.scss +0 -157
  27. data/_sass/partials/_footer.scss +0 -19
  28. data/_sass/partials/_header.scss +0 -18
  29. data/_sass/partials/_navigation.scss +0 -137
  30. data/_sass/partials/_sharing.scss +0 -8
  31. data/_sass/partials/_sidebar.scss +0 -5
  32. data/_sass/partials/_syntax.scss +0 -278
  33. data/_sass/partials/sidebar/_base.scss +0 -106
  34. data/_sass/partials/sidebar/_delicious.scss +0 -4
  35. data/_sass/partials/sidebar/_googleplus.scss +0 -26
  36. data/_sass/partials/sidebar/_pinboard.scss +0 -12
  37. data/_sass/partials/sidebar/_twitter.scss +0 -34
  38. data/assets/stylesheets/screen.scss +0 -15
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 6fd9ccb5f4c0c3508805c41572358497500e1298
4
- data.tar.gz: 7305c85804a7e763a13f68242a25811bce367af1
3
+ metadata.gz: 2e5b73d5193ff2899f149d40d1466a30041eddd3
4
+ data.tar.gz: dd9af12ec0ffddf4f6e3337fc36a68486f9ec52f
5
5
  SHA512:
6
- metadata.gz: b110c916e64f570609782664ef69d41cb7024da687473e6398e80b1b3634ef3921279fc57b24ae2fa47e459926fa927598c442e73dc000ee62fd553994f7e6fd
7
- data.tar.gz: d75216604b76429c93f149fe80abd3cadb5ee70d2e5380bf78109b31d3da0dc8272958e4fdf396dd6bfd011f7adfcfff7fe95cf8ded62ad63ad1710ddcea44ce
6
+ metadata.gz: ada34dea6c0f2cd8b75bf3e9c4c1ea74af81ddd6439b0f0202717b6556535c9d7e05073e6d2963cdcaed508934e9fd227c0a355fc8e736ce4d48ab3e90655b6c
7
+ data.tar.gz: 8731c16a828f202b704065c212c1bc292ac563a0c7e09053e9098050bb90259dead1b94143c29becca2401abc5f83e45af6fef82b6403b87f8c4b79702c9463d
data/_includes/head.html CHANGED
@@ -19,10 +19,10 @@
19
19
  {% capture canonical %}{{ site.url }}{% if site.permalink contains '.html' %}{{ page.url }}{% else %}{{ page.url | remove:'index.html' | strip_slash }}{% endif %}{% endcapture %}
20
20
  <link rel="canonical" href="{{ canonical }}">
21
21
  <link href="{{ root_url }}/favicon.png" rel="icon">
22
- <script src="{{ root_url }}/assests/javascripts/libs/modernizr.custom.55630.js"></script>
23
- <script src="{{ root_url }}/assests/javascripts/ender.js"></script>
24
- <script src="{{ root_url }}/assests/javascripts/libs/jquery.min.js"></script>
25
- <script src="{{ root_url }}/assests/javascripts/octopress.js" type="text/javascript"></script>
22
+ <script src="{{ root_url }}/assets/javascripts/libs/modernizr.custom.55630.js"></script>
23
+ <script src="{{ root_url }}/assets/javascripts/ender.js"></script>
24
+ <script src="{{ root_url }}/assets/javascripts/libs/jquery.min.js"></script>
25
+ <script src="{{ root_url }}/assets/javascripts/octopress.js" type="text/javascript"></script>
26
26
  <link href="{{ site.subscribe_rss }}" rel="alternate" title="{{site.title}}" type="application/atom+xml">
27
27
  {% include custom/head.html %}
28
28
  {% include custom/baidu_analytics.html %}
@@ -0,0 +1,31 @@
1
+ * + table {
2
+ border-style:solid;
3
+ border-width:1px;
4
+ border-color:#e7e3e7;
5
+ }
6
+
7
+ * + table th, * + table td {
8
+ border-style:dashed;
9
+ border-width:1px;
10
+ border-color:#e7e3e7;
11
+ padding-left: 3px;
12
+ padding-right: 3px;
13
+ }
14
+
15
+ * + table th {
16
+ border-style:solid;
17
+ font-weight:bold;
18
+ background: url("/images/noise.png?1330434582") repeat scroll left top #F7F3F7;
19
+ }
20
+
21
+ * + table th[align="left"], * + table td[align="left"] {
22
+ text-align:left;
23
+ }
24
+
25
+ * + table th[align="right"], * + table td[align="right"] {
26
+ text-align:right;
27
+ }
28
+
29
+ * + table th[align="center"], * + table td[align="center"] {
30
+ text-align:center;
31
+ }
@@ -0,0 +1 @@
1
+ html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font:inherit;font-size:100%;vertical-align:baseline}html{line-height:1}ol,ul{list-style:none}table{border-collapse:collapse;border-spacing:0}caption,th,td{text-align:left;font-weight:normal;vertical-align:middle}q,blockquote{quotes:none}q:before,q:after,blockquote:before,blockquote:after{content:"";content:none}a img{border:none}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}a{color:#1863a1}a:visited{color:#751590}a:focus{color:#0181eb}a:hover{color:#0181eb}a:active{color:#01579f}aside.sidebar a{color:#1863a1}aside.sidebar a:focus{color:#0181eb}aside.sidebar a:hover{color:#0181eb}aside.sidebar a:active{color:#01579f}a{-moz-transition:color .3s;-o-transition:color .3s;-webkit-transition:color .3s;transition:color .3s}html{background:#252525 url('/assets/images/line-tile.png?1490763144') top left}body>div{background:#f2f2f2 url('/assets/images/noise.png?1490763144') top left;border-bottom:1px solid #2d2d30}body>div>div{background:#f8f8f8 url('/assets/images/noise.png?1490763144') top left;border-right:1px solid #e0e0e0}.heading,body>header h1,h1,h2,h3,h4,h5,h6{font-family:"Yanone Kaffeesatz","Helvetica Neue",Arial,sans-serif}.sans,body>header h2,article header p.meta,article>footer,#content .blog-index footer,html .gist .gist-file .gist-meta,#blog-archives a.category,#blog-archives time,aside.sidebar section,body>footer{font-family:"PT Sans","Helvetica Neue",Arial,sans-serif}.serif,body,#content .blog-index a[rel=full-article]{font-family:"PT Sans","Hiragino Sans GB","Microsoft YaHei",sans-serif}.mono,pre,code,tt,p code,li code{font-family:Menlo,Monaco,"Andale Mono","lucida console","Courier New",monospace}body>header h1{font-size:2.2em;font-family:"Patua One","Helvetica Neue",Arial,sans-serif;font-weight:normal;line-height:1.2em;margin-bottom:0.6667em}body>header h2{font-family:"Yanone Kaffeesatz","Helvetica Neue",Arial,sans-serif}body{line-height:1.5em;color:#222}h1{font-size:2.2em;line-height:1.2em}@media only screen and (min-width: 992px){body{font-size:1.15em}h1{font-size:2.6em;line-height:1.2em}}h1,h2,h3,h4,h5,h6{text-rendering:optimizelegibility;text-shadow:1px 1px #efefef,2px 2px #828887;margin-bottom:1em;font-weight:bold}h2,section h1{font-size:1.5em}h3,section h2,section section h1{font-size:1.3em}h4,section h3,section section h2,section section section h1{font-size:1em}h5,section h4,section section h3{font-size:.9em}h6,section h5,section section h4,section section section h3{font-size:.8em}p,blockquote,ul,ol{margin-bottom:1.5em}ul{list-style-type:disc}ul ul{list-style-type:circle;margin-bottom:0px}ul ul ul{list-style-type:square;margin-bottom:0px}ol{list-style-type:decimal}ol ol{list-style-type:lower-alpha;margin-bottom:0px}ol ol ol{list-style-type:lower-roman;margin-bottom:0px}ul,ul ul,ul ol,ol,ol ul,ol ol{margin-left:1.3em}strong{font-weight:bold}em{font-style:italic}sup,sub{font-size:0.8em;position:relative;display:inline-block}sup{top:-.5em}sub{bottom:-.5em}q{font-style:italic}q:before{content:"\201C"}q:after{content:"\201D"}em,dfn{font-style:italic}strong,dfn{font-weight:bold}del,s{text-decoration:line-through}abbr,acronym{border-bottom:1px dotted;cursor:help}sub,sup{line-height:0}hr{margin-bottom:0.2em}small{font-size:.8em}big{font-size:1.2em}blockquote{font-style:italic;position:relative;font-size:1.2em;line-height:1.5em;padding-left:1em;border-left:4px solid rgba(170,170,170,0.5)}blockquote cite{font-style:italic}blockquote cite a{color:#aaa !important;word-wrap:break-word}blockquote cite:before{content:'\2014';padding-right:.3em;padding-left:.3em;color:#aaa}@media only screen and (min-width: 992px){blockquote{padding-left:1.5em;border-left-width:4px}}.pullquote-right:before,.pullquote-left:before{padding:0;border:none;content:attr(data-pullquote);float:right;width:45%;margin:.5em 0 1em 1.5em;position:relative;top:7px;font-size:1.4em;line-height:1.45em}.pullquote-left:before{float:left;margin:.5em 1.5em 1em 0}.force-wrap,aside.sidebar a{white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space:-o-pre-wrap;white-space:pre-wrap;word-wrap:break-word}.group,body>header,body>nav,body>footer,body #content>article,body #content>div>article,body #content>div>section,body div.pagination,aside.sidebar,#main,#content,.sidebar{*zoom:1}.group:after,body>header:after,body>nav:after,body>footer:after,body #content>article:after,body #content>div>article:after,body #content>div>section:after,body div.pagination:after,#main:after,#content:after,.sidebar:after{content:"";display:table;clear:both}body{-webkit-text-size-adjust:none;max-width:1000px;position:relative;margin:0 auto}body>header,body>nav,body>footer,body #content>article,body #content>div>article,body #content>div>section{padding-left:18px;padding-right:18px}@media only screen and (min-width: 480px){body>header,body>nav,body>footer,body #content>article,body #content>div>article,body #content>div>section{padding-left:25px;padding-right:25px}}@media only screen and (min-width: 768px){body>header,body>nav,body>footer,body #content>article,body #content>div>article,body #content>div>section{padding-left:35px;padding-right:35px}}@media only screen and (min-width: 992px){body>header,body>nav,body>footer,body #content>article,body #content>div>article,body #content>div>section{padding-left:55px;padding-right:55px}}body div.pagination{margin-left:18px;margin-right:18px}@media only screen and (min-width: 480px){body div.pagination{margin-left:25px;margin-right:25px}}@media only screen and (min-width: 768px){body div.pagination{margin-left:35px;margin-right:35px}}@media only screen and (min-width: 992px){body div.pagination{margin-left:55px;margin-right:55px}}body>header{font-size:1em;padding-top:1.5em;padding-bottom:1.5em}#content{overflow:hidden}#content>div,#content>article{width:100%}aside.sidebar{float:none;padding:0 18px 1px;background-color:#f7f7f7;border-top:1px solid #e0e0e0}.flex-content,article img,article video,article .flash-video,aside.sidebar img{max-width:100%;height:auto}.basic-alignment.left,article img.left,article video.left,article .left.flash-video,aside.sidebar img.left{float:left;margin-right:1.5em}.basic-alignment.right,article img.right,article video.right,article .right.flash-video,aside.sidebar img.right{float:right;margin-left:1.5em}.basic-alignment.center,article img.center,article video.center,article .center.flash-video,aside.sidebar img.center{display:block;margin:0 auto 1.5em}.basic-alignment.left,article img.left,article video.left,article .left.flash-video,aside.sidebar img.left,.basic-alignment.right,article img.right,article video.right,article .right.flash-video,aside.sidebar img.right{margin-bottom:.8em}.toggle-sidebar,.no-sidebar .toggle-sidebar{display:none}@media only screen and (min-width: 750px){body.sidebar-footer aside.sidebar{float:none;width:auto;clear:left;margin:0;padding:0 35px 1px;background-color:#f7f7f7;border-top:1px solid #eaeaea}body.sidebar-footer aside.sidebar section.odd,body.sidebar-footer aside.sidebar section.even{float:left;width:48%}body.sidebar-footer aside.sidebar section.odd{margin-left:0}body.sidebar-footer aside.sidebar section.even{margin-left:4%}body.sidebar-footer aside.sidebar.thirds section{width:30%;margin-left:5%}body.sidebar-footer aside.sidebar.thirds section.first{margin-left:0;clear:both}}body.sidebar-footer #content{margin-right:0px}body.sidebar-footer .toggle-sidebar{display:none}@media only screen and (min-width: 550px){body>header{font-size:1em}}@media only screen and (min-width: 750px){aside.sidebar{float:none;width:auto;clear:left;margin:0;padding:0 35px 1px;background-color:#f7f7f7;border-top:1px solid #eaeaea}aside.sidebar section.odd,aside.sidebar section.even{float:left;width:48%}aside.sidebar section.odd{margin-left:0}aside.sidebar section.even{margin-left:4%}aside.sidebar.thirds section{width:30%;margin-left:5%}aside.sidebar.thirds section.first{margin-left:0;clear:both}}@media only screen and (min-width: 768px){body{-webkit-text-size-adjust:auto}body>header{font-size:1.2em}#main{padding:0;margin:0 auto}#content{overflow:visible;margin-right:240px;position:relative}.no-sidebar #content{margin-right:0;border-right:0}.collapse-sidebar #content{margin-right:20px}#content>div,#content>article{padding-top:17.5px;padding-bottom:17.5px;float:left}aside.sidebar{width:210px;padding:0 15px 15px;background:none;clear:none;float:left;margin:0 -100% 0 0}aside.sidebar section{width:auto;margin-left:0}aside.sidebar section.odd,aside.sidebar section.even{float:none;width:auto;margin-left:0}.collapse-sidebar aside.sidebar{float:none;width:auto;clear:left;margin:0;padding:0 35px 1px;background-color:#f7f7f7;border-top:1px solid #eaeaea}.collapse-sidebar aside.sidebar section.odd,.collapse-sidebar aside.sidebar section.even{float:left;width:48%}.collapse-sidebar aside.sidebar section.odd{margin-left:0}.collapse-sidebar aside.sidebar section.even{margin-left:4%}.collapse-sidebar aside.sidebar.thirds section{width:30%;margin-left:5%}.collapse-sidebar aside.sidebar.thirds section.first{margin-left:0;clear:both}}@media only screen and (min-width: 992px){body>header{font-size:1.3em}#content{margin-right:300px}#content>div,#content>article{padding-top:27.5px;padding-bottom:27.5px}aside.sidebar{width:260px;padding:1.2em 20px 20px}.collapse-sidebar aside.sidebar{padding-left:55px;padding-right:55px}}body>header{background:#333}body>header h1{display:inline-block;margin:0}body>header h1 a,body>header h1 a:visited,body>header h1 a:hover{color:#f2f2f2;text-decoration:none}body>header h2{margin:.2em 0 0;font-size:1em;color:#aaa;font-weight:normal}body>nav{position:relative;background-color:#545454;background:url('/assets/images/noise.png?1490763144'),url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzY4Njg2OCIvPjxzdG9wIG9mZnNldD0iNTAlIiBzdG9wLWNvbG9yPSIjNTQ1NDU0Ii8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjMzgzODM4Ii8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmFkKSIgLz48L3N2Zz4g');background:url('/assets/images/noise.png?1490763144'),-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #686868),color-stop(50%, #545454),color-stop(100%, #383838));background:url('/assets/images/noise.png?1490763144'),-moz-linear-gradient(#686868,#545454,#383838);background:url('/assets/images/noise.png?1490763144'),-webkit-linear-gradient(#686868,#545454,#383838);background:url('/assets/images/noise.png?1490763144'),linear-gradient(#686868,#545454,#383838);border-top:1px solid #7a7a7a;border-bottom:1px solid #141414;padding-top:.35em;padding-bottom:.35em}body>nav form{-moz-background-clip:padding;-o-background-clip:padding-box;-webkit-background-clip:padding;background-clip:padding-box;margin:0;padding:0}body>nav form .search{padding:.3em .5em 0;font-size:.85em;font-family:"PT Sans","Helvetica Neue",Arial,sans-serif;line-height:1.1em;width:95%;-moz-border-radius:.5em;-webkit-border-radius:.5em;border-radius:.5em;-moz-background-clip:padding;-o-background-clip:padding-box;-webkit-background-clip:padding;background-clip:padding-box;-moz-box-shadow:#595959 0 1px;-webkit-box-shadow:#595959 0 1px;box-shadow:#595959 0 1px;background-color:#7a7a7a;border:1px solid #3a3a3a;color:#888}body>nav form .search:focus{color:#444;border-color:#80b1df;-moz-box-shadow:#80b1df 0 0 4px,#80b1df 0 0 3px inset;-webkit-box-shadow:#80b1df 0 0 4px,#80b1df 0 0 3px inset;box-shadow:#80b1df 0 0 4px,#80b1df 0 0 3px inset;background-color:#fff;outline:none}body>nav fieldset[role=search]{float:right;width:48%}body>nav fieldset.mobile-nav{float:left;width:48%}body>nav fieldset.mobile-nav select{width:100%;font-size:.8em;border:1px solid #888}body>nav ul{display:none}@media only screen and (min-width: 550px){body>nav{font-size:.9em}body>nav ul{margin:0;padding:0;border:0;overflow:hidden;*zoom:1;float:left;display:block;padding-top:.15em}body>nav ul li{list-style-image:none;list-style-type:none;margin-left:0;white-space:nowrap;float:left;padding-left:0;padding-right:0}body>nav ul li:first-child{padding-left:0}body>nav ul li:last-child{padding-right:0}body>nav ul li.last{padding-right:0}body>nav ul.subscription{margin-left:.8em;float:right}body>nav ul.subscription li:last-child a{padding-right:0}body>nav ul li{margin:0}body>nav a{color:#000;font-family:"PT Sans","Helvetica Neue",Arial,sans-serif;text-shadow:#727272 0 1px;float:left;text-decoration:none;font-size:1.1em;padding:.1em 0;line-height:1.5em}body>nav a:visited{color:#000}body>nav a:hover{color:#000}body>nav li+li{border-left:1px solid #383838;margin-left:.8em}body>nav li+li a{padding-left:.8em;border-left:1px solid #656565}body>nav form{float:right;text-align:left;padding-left:.8em;width:175px}body>nav form .search{width:93%;font-size:.95em;line-height:1.2em}body>nav ul[data-subscription$=email]+form{width:97px}body>nav ul[data-subscription$=email]+form .search{width:91%}body>nav fieldset.mobile-nav{display:none}body>nav fieldset[role=search]{width:99%}}@media only screen and (min-width: 992px){body>nav form{width:215px}body>nav ul[data-subscription$=email]+form{width:147px}}.no-placeholder body>nav .search{background:#7a7a7a url('/assets/images/search.png?1490763144') 0.3em 0.25em no-repeat;text-indent:1.3em}@media only screen and (min-width: 550px){.maskImage body>nav ul[data-subscription$=email]+form{width:123px}}@media only screen and (min-width: 992px){.maskImage body>nav ul[data-subscription$=email]+form{width:173px}}.maskImage ul.subscription{position:relative;top:.2em}.maskImage ul.subscription li,.maskImage ul.subscription a{border:0;padding:0}.maskImage a[rel=subscribe-rss]{position:relative;top:0px;text-indent:-999999em;background-color:#656565;border:0;padding:0}.maskImage a[rel=subscribe-rss],.maskImage a[rel=subscribe-rss]:after{-webkit-mask-image:url('/assets/images/rss.png?1490763144');-moz-mask-image:url('/assets/images/rss.png?1490763144');-ms-mask-image:url('/assets/images/rss.png?1490763144');-o-mask-image:url('/assets/images/rss.png?1490763144');mask-image:url('/assets/images/rss.png?1490763144');-webkit-mask-repeat:no-repeat;-moz-mask-repeat:no-repeat;-ms-mask-repeat:no-repeat;-o-mask-repeat:no-repeat;mask-repeat:no-repeat;width:22px;height:22px}.maskImage a[rel=subscribe-rss]:after{content:"";position:absolute;top:-1px;left:0;background-color:#404040}.maskImage a[rel=subscribe-rss]:hover:after{background-color:#333}.maskImage a[rel=subscribe-email]{position:relative;top:0px;text-indent:-999999em;background-color:#656565;border:0;padding:0}.maskImage a[rel=subscribe-email],.maskImage a[rel=subscribe-email]:after{-webkit-mask-image:url('/assets/images/email.png?1490763144');-moz-mask-image:url('/assets/images/email.png?1490763144');-ms-mask-image:url('/assets/images/email.png?1490763144');-o-mask-image:url('/assets/images/email.png?1490763144');mask-image:url('/assets/images/email.png?1490763144');-webkit-mask-repeat:no-repeat;-moz-mask-repeat:no-repeat;-ms-mask-repeat:no-repeat;-o-mask-repeat:no-repeat;mask-repeat:no-repeat;width:28px;height:22px}.maskImage a[rel=subscribe-email]:after{content:"";position:absolute;top:-1px;left:0;background-color:#404040}.maskImage a[rel=subscribe-email]:hover:after{background-color:#333}article{padding-top:1em}article a{color:#d0648a;font-weight:bold;text-decoration:none;text-shadow:1px 1px #efefef,2px 2px #ccc;word-wrap:break-word;-webkit-transition-duration:0.5s;-moz-transition-duration:0.5s;-ms-transition-duration:0.5s;-o-transition-duration:0.5s;transition-duration:0.5s}article header{position:relative;padding-top:2em;padding-bottom:1em;margin-bottom:1em;background:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAABCAYAAACsXeyTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAFUlEQVQIHWNIS0sr/v//PwMMDzY+ADqMahlW4J91AAAAAElFTkSuQmCC') bottom left repeat-x}article header h1{margin:0;text-shadow:1px 1px #efefef,2px 2px #828887}article header h1 a{text-decoration:none}article header h1 a:hover{text-decoration:none}article header p{font-size:.9em;color:#aaa;margin:0}article header p.meta{text-transform:uppercase;position:absolute;top:0}@media only screen and (min-width: 768px){article header{margin-bottom:1.5em;padding-bottom:1em;background:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAABCAYAAACsXeyTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAFUlEQVQIHWNIS0sr/v//PwMMDzY+ADqMahlW4J91AAAAAElFTkSuQmCC') bottom left repeat-x}}article h2{text-shadow:1px 1px #efefef,2px 2px #828887;padding-top:0.8em;border-top:3px dashed #828887}.entry-content article h2:first-child,article header+h2{padding-top:0}article h2:first-child,article header+h2{background:none}article .feature{padding-top:.5em;margin-bottom:1em;padding-bottom:1em;background:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAABCAYAAACsXeyTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAFUlEQVQIHWNIS0sr/v//PwMMDzY+ADqMahlW4J91AAAAAElFTkSuQmCC') bottom left repeat-x;font-size:2.0em;font-style:italic;line-height:1.3em}article img,article video,article .flash-video{-moz-border-radius:.3em;-webkit-border-radius:.3em;border-radius:.3em;-moz-box-shadow:rgba(0,0,0,0.15) 0 1px 4px;-webkit-box-shadow:rgba(0,0,0,0.15) 0 1px 4px;box-shadow:rgba(0,0,0,0.15) 0 1px 4px;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;border:#fff 0.5em solid}article video,article .flash-video{margin:0 auto 1.5em}article video{display:block;width:100%}article .flash-video>div{position:relative;display:block;padding-bottom:56.25%;padding-top:1px;height:0;overflow:hidden}article .flash-video>div iframe,article .flash-video>div object,article .flash-video>div embed{position:absolute;top:0;left:0;width:100%;height:100%}article>footer{padding-bottom:2.5em;margin-top:2em}article>footer p.meta{margin-bottom:.8em;font-size:.85em;clear:both;overflow:hidden}.blog-index article+article{border-top:3px dashed #828887}#content .blog-index{padding-top:0;padding-bottom:0}#content .blog-index article{padding-top:2em}#content .blog-index article header{background:none;padding-bottom:0}#content .blog-index article h1{font-size:2.2em;text-shadow:1px 1px #efefef,2px 2px #828887}#content .blog-index article h1 a{text-decoration:none;color:inherit}#content .blog-index article h1 a:hover{text-decoration:none;color:#0181eb}#content .blog-index a[rel=full-article]{background:#ebebeb;display:inline-block;padding:.4em .8em;margin-right:.5em;text-decoration:none;color:#666;-moz-transition:background-color .5s;-o-transition:background-color .5s;-webkit-transition:background-color .5s;transition:background-color .5s}#content .blog-index a[rel=full-article]:hover{background:#0181eb;text-shadow:none;color:#f8f8f8}#content .blog-index footer{margin-top:1em}.separator,article>footer .byline+time:before,article>footer time+time:before,article>footer .comments:before,article>footer .byline ~ .categories:before{content:"\2022 ";padding:0 .4em 0 .2em;display:inline-block}#content div.pagination{text-align:center;font-size:.95em;position:relative;border-top:3px dashed #828887;padding-top:1.5em;padding-bottom:1.5em}#content div.pagination a{text-decoration:none;color:#aaa}#content div.pagination a.prev{position:absolute;left:0}#content div.pagination a.next{position:absolute;right:0}#content div.pagination a:hover{color:#0181eb}#content div.pagination a[href*=archive]:before,#content div.pagination a[href*=archive]:after{content:'\2014';padding:0 .3em}p.meta+.sharing{padding-top:1em;padding-left:0;background:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAABCAYAAACsXeyTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAFUlEQVQIHWNIS0sr/v//PwMMDzY+ADqMahlW4J91AAAAAElFTkSuQmCC') top left repeat-x}#fb-root{display:none}.highlight,html .gist .gist-file .gist-syntax .gist-highlight{border:1px solid #05232b !important}.highlight table td.code,html .gist .gist-file .gist-syntax .gist-highlight table td.code{width:100%}.highlight .line-numbers,html .gist .gist-file .gist-syntax .highlight .line_numbers{text-align:right;font-size:13px;line-height:1.45em;background:#073642 url('/assets/images/noise.png?1490763144') top left !important;border-right:1px solid #00232c !important;-moz-box-shadow:#083e4b -1px 0 inset;-webkit-box-shadow:#083e4b -1px 0 inset;box-shadow:#083e4b -1px 0 inset;text-shadow:#021014 0 -1px;padding:.8em !important;-moz-border-radius:0;-webkit-border-radius:0;border-radius:0}.highlight .line-numbers span,html .gist .gist-file .gist-syntax .highlight .line_numbers span{color:#586e75 !important}.line-data{font-size:13px}figure.code,.gist-file,pre{-moz-box-shadow:rgba(0,0,0,0.06) 0 0 10px;-webkit-box-shadow:rgba(0,0,0,0.06) 0 0 10px;box-shadow:rgba(0,0,0,0.06) 0 0 10px}figure.code .highlight pre,.gist-file .highlight pre,pre .highlight pre{-moz-box-shadow:none;-webkit-box-shadow:none;box-shadow:none}.gist .highlight *::-moz-selection,figure.code .highlight *::-moz-selection{background:#386774;color:inherit;text-shadow:#002b36 0 1px}.gist .highlight *::-webkit-selection,figure.code .highlight *::-webkit-selection{background:#386774;color:inherit;text-shadow:#002b36 0 1px}.gist .highlight *::selection,figure.code .highlight *::selection{background:#386774;color:inherit;text-shadow:#002b36 0 1px}html .gist .gist-file{margin-bottom:1.8em;position:relative;border:none;padding-top:26px !important}html .gist .gist-file .highlight{margin-bottom:0}html .gist .gist-file .gist-syntax{background:#01222d !important;color:#d5dee2 !important;padding:0 2em;border-bottom:0 !important}html .gist .gist-file .gist-syntax .gist-highlight{background:#002b36 !important}html .gist .gist-file .gist-syntax .highlight pre{padding:0}html .gist .gist-file .gist-meta{padding:.6em 0.8em;font-size:.7em !important;background:#01222d url('/assets/images/noise.png?1490763144') top left;text-shadow:none !important;color:#d5dee2;line-height:1.5em}html .gist .gist-file .gist-meta a{color:#76888b !important;text-decoration:none}html .gist .gist-file .gist-meta a:hover,html .gist .gist-file .gist-meta a:focus{text-decoration:underline}html .gist .gist-file .gist-meta a:hover{color:#93a1a1 !important}html .gist .gist-file .gist-meta a[href*='#file']{position:absolute;top:0;left:0;right:0px;color:#474747 !important}html .gist .gist-file .gist-meta a[href*='#file']:hover{color:#1863a1 !important}html .gist .gist-file .gist-meta a[href*=raw]{top:.4em}pre{background:#002b36 url('/assets/images/noise.png?1490763144') top left;-moz-border-radius:.4em;-webkit-border-radius:.4em;border-radius:.4em;border:1px solid #05232b;line-height:1.45em;font-size:13px;margin-bottom:2.1em;padding:.8em 1em;color:#93a1a1;overflow:auto}h3.filename+pre{-moz-border-radius-topleft:0px;-webkit-border-top-left-radius:0px;border-top-left-radius:0px;-moz-border-radius-topright:0px;-webkit-border-top-right-radius:0px;border-top-right-radius:0px}p code,li code{word-wrap:break-word;white-space:pre;display:inline-block;background:#B6DDEF;font-size:90%;line-height:1.5em;color:#555;border:1px dashed #0181EB;-moz-border-radius:.4em;-webkit-border-radius:.4em;border-radius:.4em;padding:0 .3em;margin:-1px 0}p pre code,li pre code{font-size:1em !important;background:none;border:none}.pre-code,html .gist .gist-file .gist-syntax .highlight pre,.highlight code{font-family:Menlo,Monaco,"Andale Mono","lucida console","Courier New",monospace !important;overflow:scroll;overflow-y:hidden;display:block;padding:.8em;overflow-x:auto;line-height:1.45em;background:#002b36 url('/assets/images/noise.png?1490763144') top left !important;color:#93a1a1 !important}.pre-code span,html .gist .gist-file .gist-syntax .highlight pre span,.highlight code span{color:#93a1a1 !important}.pre-code span,html .gist .gist-file .gist-syntax .highlight pre span,.highlight code span{font-style:normal !important;font-weight:normal !important}.pre-code .c,html .gist .gist-file .gist-syntax .highlight pre .c,.highlight code .c{color:#586e75 !important;font-style:italic !important}.pre-code .cm,html .gist .gist-file .gist-syntax .highlight pre .cm,.highlight code .cm{color:#586e75 !important;font-style:italic !important}.pre-code .cp,html .gist .gist-file .gist-syntax .highlight pre .cp,.highlight code .cp{color:#586e75 !important;font-style:italic !important}.pre-code .c1,html .gist .gist-file .gist-syntax .highlight pre .c1,.highlight code .c1{color:#586e75 !important;font-style:italic !important}.pre-code .cs,html .gist .gist-file .gist-syntax .highlight pre .cs,.highlight code .cs{color:#586e75 !important;font-weight:bold !important;font-style:italic !important}.pre-code .err,html .gist .gist-file .gist-syntax .highlight pre .err,.highlight code .err{color:#dc322f !important;background:none !important}.pre-code .k,html .gist .gist-file .gist-syntax .highlight pre .k,.highlight code .k{color:#cb4b16 !important}.pre-code .o,html .gist .gist-file .gist-syntax .highlight pre .o,.highlight code .o{color:#93a1a1 !important;font-weight:bold !important}.pre-code .p,html .gist .gist-file .gist-syntax .highlight pre .p,.highlight code .p{color:#93a1a1 !important}.pre-code .ow,html .gist .gist-file .gist-syntax .highlight pre .ow,.highlight code .ow{color:#2aa198 !important;font-weight:bold !important}.pre-code .gd,html .gist .gist-file .gist-syntax .highlight pre .gd,.highlight code .gd{color:#93a1a1 !important;background-color:#372d34 !important;display:inline-block}.pre-code .gd .x,html .gist .gist-file .gist-syntax .highlight pre .gd .x,.highlight code .gd .x{color:#93a1a1 !important;background-color:#4d2d34 !important;display:inline-block}.pre-code .ge,html .gist .gist-file .gist-syntax .highlight pre .ge,.highlight code .ge{color:#93a1a1 !important;font-style:italic !important}.pre-code .gh,html .gist .gist-file .gist-syntax .highlight pre .gh,.highlight code .gh{color:#586e75 !important}.pre-code .gi,html .gist .gist-file .gist-syntax .highlight pre .gi,.highlight code .gi{color:#93a1a1 !important;background-color:#1b412b !important;display:inline-block}.pre-code .gi .x,html .gist .gist-file .gist-syntax .highlight pre .gi .x,.highlight code .gi .x{color:#93a1a1 !important;background-color:#355720 !important;display:inline-block}.pre-code .gs,html .gist .gist-file .gist-syntax .highlight pre .gs,.highlight code .gs{color:#93a1a1 !important;font-weight:bold !important}.pre-code .gu,html .gist .gist-file .gist-syntax .highlight pre .gu,.highlight code .gu{color:#6c71c4 !important}.pre-code .kc,html .gist .gist-file .gist-syntax .highlight pre .kc,.highlight code .kc{color:#859900 !important;font-weight:bold !important}.pre-code .kd,html .gist .gist-file .gist-syntax .highlight pre .kd,.highlight code .kd{color:#268bd2 !important}.pre-code .kp,html .gist .gist-file .gist-syntax .highlight pre .kp,.highlight code .kp{color:#cb4b16 !important;font-weight:bold !important}.pre-code .kr,html .gist .gist-file .gist-syntax .highlight pre .kr,.highlight code .kr{color:#d33682 !important;font-weight:bold !important}.pre-code .kt,html .gist .gist-file .gist-syntax .highlight pre .kt,.highlight code .kt{color:#2aa198 !important}.pre-code .n,html .gist .gist-file .gist-syntax .highlight pre .n,.highlight code .n{color:#268bd2 !important}.pre-code .na,html .gist .gist-file .gist-syntax .highlight pre .na,.highlight code .na{color:#268bd2 !important}.pre-code .nb,html .gist .gist-file .gist-syntax .highlight pre .nb,.highlight code .nb{color:#859900 !important}.pre-code .nc,html .gist .gist-file .gist-syntax .highlight pre .nc,.highlight code .nc{color:#d33682 !important}.pre-code .no,html .gist .gist-file .gist-syntax .highlight pre .no,.highlight code .no{color:#b58900 !important}.pre-code .nl,html .gist .gist-file .gist-syntax .highlight pre .nl,.highlight code .nl{color:#859900 !important}.pre-code .ne,html .gist .gist-file .gist-syntax .highlight pre .ne,.highlight code .ne{color:#268bd2 !important;font-weight:bold !important}.pre-code .nf,html .gist .gist-file .gist-syntax .highlight pre .nf,.highlight code .nf{color:#268bd2 !important;font-weight:bold !important}.pre-code .nn,html .gist .gist-file .gist-syntax .highlight pre .nn,.highlight code .nn{color:#b58900 !important}.pre-code .nt,html .gist .gist-file .gist-syntax .highlight pre .nt,.highlight code .nt{color:#268bd2 !important;font-weight:bold !important}.pre-code .nx,html .gist .gist-file .gist-syntax .highlight pre .nx,.highlight code .nx{color:#b58900 !important}.pre-code .vg,html .gist .gist-file .gist-syntax .highlight pre .vg,.highlight code .vg{color:#268bd2 !important}.pre-code .vi,html .gist .gist-file .gist-syntax .highlight pre .vi,.highlight code .vi{color:#268bd2 !important}.pre-code .nv,html .gist .gist-file .gist-syntax .highlight pre .nv,.highlight code .nv{color:#268bd2 !important}.pre-code .mf,html .gist .gist-file .gist-syntax .highlight pre .mf,.highlight code .mf{color:#2aa198 !important}.pre-code .m,html .gist .gist-file .gist-syntax .highlight pre .m,.highlight code .m{color:#2aa198 !important}.pre-code .mh,html .gist .gist-file .gist-syntax .highlight pre .mh,.highlight code .mh{color:#2aa198 !important}.pre-code .mi,html .gist .gist-file .gist-syntax .highlight pre .mi,.highlight code .mi{color:#2aa198 !important}.pre-code .s,html .gist .gist-file .gist-syntax .highlight pre .s,.highlight code .s{color:#2aa198 !important}.pre-code .sd,html .gist .gist-file .gist-syntax .highlight pre .sd,.highlight code .sd{color:#2aa198 !important}.pre-code .s2,html .gist .gist-file .gist-syntax .highlight pre .s2,.highlight code .s2{color:#2aa198 !important}.pre-code .se,html .gist .gist-file .gist-syntax .highlight pre .se,.highlight code .se{color:#dc322f !important}.pre-code .si,html .gist .gist-file .gist-syntax .highlight pre .si,.highlight code .si{color:#268bd2 !important}.pre-code .sr,html .gist .gist-file .gist-syntax .highlight pre .sr,.highlight code .sr{color:#2aa198 !important}.pre-code .s1,html .gist .gist-file .gist-syntax .highlight pre .s1,.highlight code .s1{color:#2aa198 !important}.pre-code div .gd,html .gist .gist-file .gist-syntax .highlight pre div .gd,.highlight code div .gd,.pre-code div .gd .x,html .gist .gist-file .gist-syntax .highlight pre div .gd .x,.highlight code div .gd .x,.pre-code div .gi,html .gist .gist-file .gist-syntax .highlight pre div .gi,.highlight code div .gi,.pre-code div .gi .x,html .gist .gist-file .gist-syntax .highlight pre div .gi .x,.highlight code div .gi .x{display:inline-block;width:100%}.highlight,.gist-highlight{margin-bottom:1.8em;background:#002b36;overflow-y:hidden;overflow-x:auto}.highlight pre,.gist-highlight pre{background:none;-moz-border-radius:0px;-webkit-border-radius:0px;border-radius:0px;border:none;padding:0;margin-bottom:0}pre::-webkit-scrollbar,.highlight::-webkit-scrollbar,.gist-highlight::-webkit-scrollbar{height:.5em;background:rgba(255,255,255,0.15)}pre::-webkit-scrollbar-thumb:horizontal,.highlight::-webkit-scrollbar-thumb:horizontal,.gist-highlight::-webkit-scrollbar-thumb:horizontal{background:rgba(255,255,255,0.2);-webkit-border-radius:4px;border-radius:4px}.highlight code{background:#000}figure.code{background:none;padding:0;border:0;margin-bottom:1.5em}figure.code pre{margin-bottom:0}figure.code figcaption{position:relative}figure.code .highlight{margin-bottom:0}.code-title,html .gist .gist-file .gist-meta a[href*='#file'],h3.filename,figure.code figcaption{text-align:center;font-size:13px;line-height:2em;text-shadow:#cbcccc 0 1px 0;color:#474747;font-weight:normal;margin-bottom:0;-moz-border-radius-topleft:5px;-webkit-border-top-left-radius:5px;border-top-left-radius:5px;-moz-border-radius-topright:5px;-webkit-border-top-right-radius:5px;border-top-right-radius:5px;font-family:"Helvetica Neue", Arial, "Lucida Grande", "Lucida Sans Unicode", Lucida, sans-serif;background:#aaa url('/assets/images/code_bg.png?1490763144') top repeat-x;border:1px solid #565656;border-top-color:#cbcbcb;border-left-color:#a5a5a5;border-right-color:#a5a5a5;border-bottom:0}.download-source,html .gist .gist-file .gist-meta a[href*=raw],figure.code figcaption a{position:absolute;right:.8em;text-decoration:none;color:#666 !important;z-index:1;font-size:13px;text-shadow:#cbcccc 0 1px 0;padding-left:3em}.download-source:hover,html .gist .gist-file .gist-meta a[href*=raw]:hover,figure.code figcaption a:hover,.download-source:focus,html .gist .gist-file .gist-meta a[href*=raw]:focus,figure.code figcaption a:focus{text-decoration:underline}.gist-file{font-size:.8em !important}table.lines{width:100%}#archive #content>div,#archive #content>div>article{padding-top:0}#blog-archives{color:#aaa}#blog-archives article{padding:1em 0 1em;position:relative;background:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAABCAYAAACsXeyTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAFUlEQVQIHWNIS0sr/v//PwMMDzY+ADqMahlW4J91AAAAAElFTkSuQmCC') bottom left repeat-x}#blog-archives article:last-child{background:none}#blog-archives article footer{padding:0;margin:0}#blog-archives h1{color:#222;margin-bottom:.3em}#blog-archives h2{display:none}#blog-archives h1{font-size:1.5em}#blog-archives h1 a{text-decoration:none;color:inherit;font-weight:normal;display:inline-block}#blog-archives h1 a:hover,#blog-archives h1 a:focus{text-decoration:underline}#blog-archives h1 a:hover{color:#0181eb}#blog-archives a.category,#blog-archives time{color:#aaa}#blog-archives .entry-content{display:none}#blog-archives time{font-size:.9em;line-height:1.2em}#blog-archives time .month,#blog-archives time .day{display:inline-block}#blog-archives time .month{text-transform:uppercase}#blog-archives p{margin-bottom:1em}#blog-archives a,#blog-archives .entry-content a{color:inherit}#blog-archives a:hover,#blog-archives .entry-content a:hover{color:#0181eb}#blog-archives a:hover{color:#0181eb}@media only screen and (min-width: 550px){#blog-archives article{margin-left:5em}#blog-archives h2{margin-bottom:.3em;font-weight:normal;display:inline-block;position:relative;top:-1px;float:left}#blog-archives h2:first-child{padding-top:.75em}#blog-archives time{position:absolute;text-align:right;left:0em;top:1.8em}#blog-archives .year{display:none}#blog-archives article{padding-left:4.5em;padding-bottom:.7em}#blog-archives a.category{line-height:1.1em}}#content>.category article{margin-left:0;padding-left:6.8em}#content>.category .year{display:inline}.side-shadow-border,aside.sidebar section h1,aside.sidebar li{-moz-box-shadow:#fff 0 1px;-webkit-box-shadow:#fff 0 1px;box-shadow:#fff 0 1px}aside.sidebar{overflow:hidden;color:#4c4c4c;text-shadow:#fff 0 1px}aside.sidebar section{font-size:.8em;line-height:1.4em;margin-bottom:1.5em}aside.sidebar section h1{margin:1.5em 0 0;padding-bottom:.2em;border-bottom:1px solid #e0e0e0}aside.sidebar section h1+p{padding-top:.4em}aside.sidebar img{-moz-border-radius:.3em;-webkit-border-radius:.3em;border-radius:.3em;-moz-box-shadow:rgba(0,0,0,0.15) 0 1px 4px;-webkit-box-shadow:rgba(0,0,0,0.15) 0 1px 4px;box-shadow:rgba(0,0,0,0.15) 0 1px 4px;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;border:#fff 0.3em solid}aside.sidebar ul{margin-bottom:0.5em;margin-left:0}aside.sidebar li{list-style:none;padding:.5em 0;margin:0;border-bottom:1px solid #e0e0e0}aside.sidebar li p:last-child{margin-bottom:0}aside.sidebar a{color:inherit;-moz-transition:color .5s;-o-transition:color .5s;-webkit-transition:color .5s;transition:color .5s}aside.sidebar:hover a{color:#1863a1}aside.sidebar:hover a:hover{color:#0181eb}.aside-alt-link,#tweets a[href*='twitter.com/search'],#pinboard_linkroll .pin-tag{color:#7f7f7f}.aside-alt-link:hover,#tweets a[href*='twitter.com/search']:hover,#pinboard_linkroll .pin-tag:hover{color:#0181eb}@media only screen and (min-width: 768px){.toggle-sidebar{outline:none;position:absolute;right:-10px;top:0;bottom:0;display:inline-block;text-decoration:none;color:#cecece;width:9px;cursor:pointer}.toggle-sidebar:hover{background:#e9e9e9;background:url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuMCIgeTE9IjAuNSIgeDI9IjEuMCIgeTI9IjAuNSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2UwZTBlMCIgc3RvcC1vcGFjaXR5PSIwLjUiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNlMGUwZTAiIHN0b3Atb3BhY2l0eT0iMC4wIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmFkKSIgLz48L3N2Zz4g');background:-webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, rgba(224,224,224,0.5)),color-stop(100%, rgba(224,224,224,0)));background:-moz-linear-gradient(left, rgba(224,224,224,0.5),rgba(224,224,224,0));background:-webkit-linear-gradient(left, rgba(224,224,224,0.5),rgba(224,224,224,0));background:linear-gradient(to right, rgba(224,224,224,0.5),rgba(224,224,224,0))}.toggle-sidebar:after{position:absolute;right:-11px;top:0;width:20px;font-size:1.2em;line-height:1.1em;padding-bottom:.15em;-moz-border-radius-bottomright:.3em;-webkit-border-bottom-right-radius:.3em;border-bottom-right-radius:.3em;text-align:center;background:#f8f8f8 url('/assets/images/noise.png?1490763144') top left;border-bottom:1px solid #e0e0e0;border-right:1px solid #e0e0e0;content:"\00BB";text-indent:-1px}.collapse-sidebar .toggle-sidebar{text-indent:0px;right:-20px;width:19px}.collapse-sidebar .toggle-sidebar:hover{background:#e9e9e9}.collapse-sidebar .toggle-sidebar:after{border-left:1px solid #e0e0e0;text-shadow:#fff 0 1px;content:"\00AB";left:0px;right:0;text-align:center;text-indent:0;border:0;border-right-width:0;background:none}}#tweets .loading{background:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2ZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDowMjgwMTE3NDA3MjA2ODExQTQxQUNFN0NCOEMyNEMzNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDowQkYxMEI5QjQ5QzYxMUUwQTJGN0YyQzFDMzFCQjZCMyIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDowQkYxMEI5QTQ5QzYxMUUwQTJGN0YyQzFDMzFCQjZCMyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M1IE1hY2ludG9zaCI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkIxREYyRDc2MTIyMDY4MTFBNDFBQ0U3Q0I4QzI0QzM2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjAyODAxMTc0MDcyMDY4MTFBNDFBQ0U3Q0I4QzI0QzM2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+bAX+SwAAAZBJREFUeNrsl+1tgzAQhgF1AHeCphPU3QA2SDcIEzRMUDpB0wlCJ8gIcf+DQicoG5QNqC29SJZl/EHc8oeTTkTCvnvse3048TAM0ZKWRAvbCnDTNE3omBvulHvPnVkBAic/ct/hd4fn/X+VQE4+AjzN0UDK/Zv7njtxTL5Tko9xLgAjPgA96vjG/QcBqCE5wVgT3HkKQgfQcq+UABcESTXjXXaKYr6zBnIFYtzSswbk2bFMVFOmSYBSN1gBGetOPIT64noMmW6wRvX9jB6xlXT2YALIkSSyCNDXTpLYM1MfEBooZqzSxVoskCQOx4v8AQDF7m5MAD0oQ5uImXG/Fbtsa8UVenkRKHmHmMznW9AFLMPH3I8RCyBGsZCDDmDvCJBBvdfUvtcBtOj1W0PzKNH96BXJ2dSFRLx4x7E4AuiT+x0S0gCqr2w3ogqJT+j1aSDF57ZrWaJ0p0edUDxN1PkVsax3wkQzucDZP3gqv5Xmlq5z47quXdpmKmlChv3CVjPpEupl8frXbAVYGuBXgAEAuftfzMLpDZgAAAAASUVORK5CYII=') no-repeat center 0.5em;color:#c4c4c4;text-shadow:#f8f8f8 0 1px;text-align:center;padding:2.5em 0 .5em}#tweets .loading.error{background:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAACLklEQVRYhe2WwY2bQBSG/4f3aEtsB+4gG8kzkk+BDuIKbFcQU0GyFXhdgekgJeAbEiCFErwdIMHN1vw5BK8cAws2K+3F/wm9eTP/x7w3owHuuuuTJbdODMNwPBgMHBEZi8gXkvbZcArgleROa51+GEAQBPZwOFwAmIvIU8dpGUn/eDxuptPp/iaA0nglIj8A2K0TGkTypSiKZ9d1s84AcRw7IrIFML7V+EJ7Y8zsVJp3AaIoWliWte3jRjIVkZTkK4Bvp9IZYzyttd8I0NM8I7k5Ho9+Xd2TJPlO8icArxag3PbgFmeSKcllW/eXPqsKQBAE9mg0+oN+Nc9IzpRSu7ZE6zIwHA5XPc2BfyfF6ZJYARCReU/zk7IwDMdtSW8liOPYITnu2/WXMsYstdZ+I0DZ7Wv0uGDalOf54/nlcy5LRPYAliRbu/YGZSS9JnMAsEhmALZX3O3XyBaRdRRFi0YAEZkbYzySLoDZDSaNf/dmYlnbOI6durEHpZR3HkiSZI8rjqExxjuZtKQ6AHYVuJoFn7uaA8i01r7W2ifpkqwYlPKVUr/qBioA5WKdGpLk5vStlNoppdwGkEWSJLU7VAEAgKIo3A4QWVEUL5fBE4gx5isA/xwiiqJKo9cCuK6bFUXhXizwn4wx7x4vrXU6mUyWeZ4/kvQA7EWkcte0PkiiKHoSkbWIOGdhfzKZLNvmdtFDW4JlWb8vQh9mDnR8E5bvA/twOKR1D4y77uqjv2QXCIW9OIVeAAAAAElFTkSuQmCC') no-repeat center 0.5em}#tweets p{position:relative;padding-right:1em}#tweets a[href*=status]:first-child{color:#a5a5a5;float:right;padding:0 0 .1em 1em;position:relative;right:-1.3em;text-shadow:#fff 0 1px;font-size:.7em;text-decoration:none}#tweets a[href*=status]:first-child span{font-size:1.5em}#tweets a[href*=status]:first-child:hover{color:#0181eb;text-decoration:none}#tweets a[href*='twitter.com/search']{text-decoration:none}#tweets a[href*='twitter.com/search']:hover,#tweets a[href*='twitter.com/search']:focus{text-decoration:underline}.googleplus h1{-moz-box-shadow:none !important;-webkit-box-shadow:none !important;-o-box-shadow:none !important;box-shadow:none !important;border-bottom:0px none !important}.googleplus a{text-decoration:none;white-space:normal !important;line-height:32px}.googleplus a img{float:left;margin-right:0.5em;border:0 none}.googleplus-hidden{position:absolute;top:-1000em;left:-1000em}#pinboard_linkroll .pin-title,#pinboard_linkroll .pin-description{display:block;margin-bottom:.5em}#pinboard_linkroll .pin-tag{text-decoration:none}#pinboard_linkroll .pin-tag:hover,#pinboard_linkroll .pin-tag:focus{text-decoration:underline}#pinboard_linkroll .pin-tag:after{content:','}#pinboard_linkroll .pin-tag:last-child:after{content:''}.delicious-posts a.delicious-link{margin-bottom:.5em;display:block}.delicious-posts p{font-size:1em}body>footer{font-size:.8em;color:#888;text-shadow:#45474a 0 1px;background-color:#393A3D;background:url('/assets/images/noise.png?1490763144'),url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzRmNTE1NSIvPjxzdG9wIG9mZnNldD0iNTAlIiBzdG9wLWNvbG9yPSIjMzkzYTNkIi8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjMWUxZTIwIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmFkKSIgLz48L3N2Zz4g');background:url('/assets/images/noise.png?1490763144'),-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #4f5155),color-stop(50%, #393a3d),color-stop(100%, #1e1e20));background:url('/assets/images/noise.png?1490763144'),-moz-linear-gradient(#4f5155,#393a3d,#1e1e20);background:url('/assets/images/noise.png?1490763144'),-webkit-linear-gradient(#4f5155,#393a3d,#1e1e20);background:url('/assets/images/noise.png?1490763144'),linear-gradient(#4f5155,#393a3d,#1e1e20);border-top:1px solid #5e6065;position:relative;padding-top:1em;padding-bottom:1em;margin-bottom:3em;-moz-border-radius-bottomleft:.4em;-webkit-border-bottom-left-radius:.4em;border-bottom-left-radius:.4em;-moz-border-radius-bottomright:.4em;-webkit-border-bottom-right-radius:.4em;border-bottom-right-radius:.4em;z-index:1}body>footer a{color:#1183ee}body>footer a:visited{color:#1183ee}body>footer a:hover{color:#3c9af1}body>footer p:last-child{margin-bottom:0}@font-face{font-family:'PT Sans';font-style:normal;font-weight:400;src:local("PT Sans"),local("PTSans-Regular"),url("../fonts/fhNmDCnjccoUYyU4ZASaLVKPGs1ZzpMvnHX-7fPOuAc.woff2") format("woff2");unicode-range:U+0460-052F,U+20B4,U+2DE0-2DFF,U+A640-A69F}@font-face{font-family:'PT Sans';font-style:normal;font-weight:400;src:local("PT Sans"),local("PTSans-Regular"),url("../fonts/BJVWev7_auVaQ__OU8Qih1KPGs1ZzpMvnHX-7fPOuAc.woff2") format("woff2");unicode-range:U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}@font-face{font-family:'PT Sans';font-style:normal;font-weight:400;src:local("PT Sans"),local("PTSans-Regular"),url("../fonts/oysROHFTu1eTZ74Hcf8V-VKPGs1ZzpMvnHX-7fPOuAc.woff2") format("woff2");unicode-range:U+0100-024F,U+1E00-1EFF,U+20A0-20AB,U+20AD-20CF,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:'PT Sans';font-style:normal;font-weight:400;src:local("PT Sans"),local("PTSans-Regular"),url("../fonts/CWlc_g68BGYDSGdpJvpktgLUuEpTyoUstqEm5AMlJo4.woff2") format("woff2");unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2212,U+2215,U+E0FF,U+EFFD,U+F000}@font-face{font-family:'PT Sans';font-style:normal;font-weight:700;src:local("PT Sans Bold"),local("PTSans-Bold"),url("../fonts/kTYfCWJhlldPf5LnG4ZnHAsYbbCjybiHxArTLjt7FRU.woff2") format("woff2");unicode-range:U+0460-052F,U+20B4,U+2DE0-2DFF,U+A640-A69F}@font-face{font-family:'PT Sans';font-style:normal;font-weight:700;src:local("PT Sans Bold"),local("PTSans-Bold"),url("../fonts/g46X4VH_KHOWAAa-HpnGPgsYbbCjybiHxArTLjt7FRU.woff2") format("woff2");unicode-range:U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}@font-face{font-family:'PT Sans';font-style:normal;font-weight:700;src:local("PT Sans Bold"),local("PTSans-Bold"),url("../fonts/hpORcvLZtemlH8gI-1S-7gsYbbCjybiHxArTLjt7FRU.woff2") format("woff2");unicode-range:U+0100-024F,U+1E00-1EFF,U+20A0-20AB,U+20AD-20CF,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:'PT Sans';font-style:normal;font-weight:700;src:local("PT Sans Bold"),local("PTSans-Bold"),url("../fonts/0XxGQsSc1g4rdRdjJKZrNAzyDMXhdD8sAj6OAJTFsBI.woff2") format("woff2");unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2212,U+2215,U+E0FF,U+EFFD,U+F000}@font-face{font-family:'PT Sans';font-style:italic;font-weight:400;src:local("PT Sans Italic"),local("PTSans-Italic"),url("../fonts/GpWpM_6S4VQLPNAQ3iWvVYX0hVgzZQUfRDuZrPvH3D8.woff2") format("woff2");unicode-range:U+0460-052F,U+20B4,U+2DE0-2DFF,U+A640-A69F}@font-face{font-family:'PT Sans';font-style:italic;font-weight:400;src:local("PT Sans Italic"),local("PTSans-Italic"),url("../fonts/7dSh6BcuqDLzS2qAASIeuoX0hVgzZQUfRDuZrPvH3D8.woff2") format("woff2");unicode-range:U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}@font-face{font-family:'PT Sans';font-style:italic;font-weight:400;src:local("PT Sans Italic"),local("PTSans-Italic"),url("../fonts/DVKQJxMmC9WF_oplMzlQqYX0hVgzZQUfRDuZrPvH3D8.woff2") format("woff2");unicode-range:U+0100-024F,U+1E00-1EFF,U+20A0-20AB,U+20AD-20CF,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:'PT Sans';font-style:italic;font-weight:400;src:local("PT Sans Italic"),local("PTSans-Italic"),url("../fonts/PIPMHY90P7jtyjpXuZ2cLJBw1xU1rKptJj_0jans920.woff2") format("woff2");unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2212,U+2215,U+E0FF,U+EFFD,U+F000}@font-face{font-family:'PT Sans';font-style:italic;font-weight:700;src:local("PT Sans Bold Italic"),local("PTSans-BoldItalic"),url("../fonts/lILlYDvubYemzYzN7GbLkA7aC6SjiAOpAWOKfJDfVRY.woff2") format("woff2");unicode-range:U+0460-052F,U+20B4,U+2DE0-2DFF,U+A640-A69F}@font-face{font-family:'PT Sans';font-style:italic;font-weight:700;src:local("PT Sans Bold Italic"),local("PTSans-BoldItalic"),url("../fonts/lILlYDvubYemzYzN7GbLkBdwxCXfZpKo5kWAx_74bHs.woff2") format("woff2");unicode-range:U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}@font-face{font-family:'PT Sans';font-style:italic;font-weight:700;src:local("PT Sans Bold Italic"),local("PTSans-BoldItalic"),url("../fonts/lILlYDvubYemzYzN7GbLkIjoYw3YTyktCCer_ilOlhE.woff2") format("woff2");unicode-range:U+0100-024F,U+1E00-1EFF,U+20A0-20AB,U+20AD-20CF,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:'PT Sans';font-style:italic;font-weight:700;src:local("PT Sans Bold Italic"),local("PTSans-BoldItalic"),url("../fonts/lILlYDvubYemzYzN7GbLkBampu5_7CjHW5spxoeN3Vs.woff2") format("woff2");unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2212,U+2215,U+E0FF,U+EFFD,U+F000}@font-face{font-family:'Patua One';font-style:normal;font-weight:400;src:local("Patua One"),local("PatuaOne-Regular"),url("../fonts/yAXhog6uK3bd3OwBILv_SJBw1xU1rKptJj_0jans920.woff2") format("woff2");unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2212,U+2215,U+E0FF,U+EFFD,U+F000}@font-face{font-family:'Yanone Kaffeesatz';font-style:normal;font-weight:400;src:local("Yanone Kaffeesatz Regular"),local("YanoneKaffeesatz-Regular"),url("../fonts/YDAoLskQQ5MOAgvHUQCcLaa0P60JZGaCMFbL3N9v4H0.woff2") format("woff2");unicode-range:U+0100-024F,U+1E00-1EFF,U+20A0-20AB,U+20AD-20CF,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:'Yanone Kaffeesatz';font-style:normal;font-weight:400;src:local("Yanone Kaffeesatz Regular"),local("YanoneKaffeesatz-Regular"),url("../fonts/YDAoLskQQ5MOAgvHUQCcLWjF_m7mVnhXExjNED3rUtY.woff2") format("woff2");unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2212,U+2215,U+E0FF,U+EFFD,U+F000}@font-face{font-family:'icomoon';src:url("../fonts/IcoMoon.eot");src:url("../fonts/IcoMoon.eot?#iefix") format("embedded-opentype"),url("../fonts/IcoMoon.svg#icomoon") format("svg"),url("../fonts/IcoMoon.woff") format("woff"),url("../fonts/IcoMoon.ttf") format("truetype");font-weight:normal;font-style:normal}[data-icon]:before{font-family:'icomoon';content:attr(data-icon);speak:none}[class^="icon-"]:before,[class*=" icon-"]:before{font-family:'icomoon';font-style:normal;speak:none}.icon-facebook:before{content:"\23"}.icon-github:before{content:"\24"}.icon-google-plus:before{content:"\25"}.icon-rss:before{content:"\26"}.icon-home:before{content:"\27"}.icon-user:before{content:"\28"}.icon-book-alt:before{content:"\2a"}.icon-twitter:before{content:"\22"}.icon-link:before{content:"\21"}sup,sub{padding:0 0.2em;display:inline}#gradient-style{margin-bottom:1.5em;width:100%;text-align:left;border-collapse:collapse}#gradient-style th{text-align:left;font-weight:normal;padding:8px;background:#b9c9fe url("../images/gradhead.png") repeat-x;border-top:2px solid #d3ddff;border-bottom:1px solid #fff;color:#039}#gradient-style td{padding:8px;border-bottom:1px solid #fff;color:#669;border-top:1px solid #fff;background:#e8edff url("../images/gradback.png") repeat-x}#gradient-style tfoot tr td{background:#e8edff;font-size:12px;color:#99c}#gradient-style tbody tr:hover td{background:#d0dafd url("../images/gradhover.png") repeat-x;color:#339}html{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACoAAAAWCAYAAAC2ew6NAAAEZUlEQVR42oWX12ogMQxFhzTSe4f03ntPSCP1JY2E/P+PaDmCA2Z2s3kQnrElX+lalmaqlpaWQGZnZ2NpaSnW19djdXXVMWVzczP6+vpiZGQkSn2E597e3lhbW4udnZ0ct7e3Y2NjI/fo6OiIpqammJmZCfW1X1xcRA+MtNna2krZ29v7C68CBOFlbm6OzTFiBDjHlZWVmJ6eTsCenh71dTLXDWx3dzftlpeXERxKZ9Uv8RYWFgwI3ZKkDKzEq2RmeHg4Dg8PMdRRmGSDdGR/fz8GBgZicnKyZCb1Tk5OGBEYSV3ZPTo6StDm5ubUr+MhpaNiYzc4OCheMppHcHl5ySIARKXDCHPJ1OnpabKADceCzvn5eZydnck8wTEPMI6yzt7smc6Jpx362IqJjY6CNz8/n6xWn5+f8fDwwIK5wqIRMrIZzmbu3N/fx8fHR7y8vMTT0xNzbA6T6BtYinMHBwdxd3cXX19f8fr6Ch5Mso4++yMEmnY6fHx8HDc3N/H9/R0VE0bEkTGW4DIFo7zDBjrlMakHmBcS/TLPsfOiGQTinJfJk2QekiSqYlLaZdJ3jQHnWSM2Yd0biw4jLOGEzpS3H+FZFrVlP94hg5EAJY93SNNRI85xamoqk7i1tTVlaGiIhM6NdKhkUkcmJiaw85KRj+Qz+jqpLuASAh6XNLHa29ujv7/f6iNBKVV5W3Gos7MzGhoaMObCZIno6upiU4+REce9NNxqEj5tGxsbsUnbsbExwGRRlnSeNUpXHY991IHNfK7MBYBHR0dhA2PLSTrQ3d0d4+PjBoTAFnY8AwAYIOhigy17wLTOcawEZ05j9yMevhgYAVVl4re1tVkr6x0IVr10lhSFNZgETP16B8LG/Db3f8VDR2YrjO0kLMJKrYMgRF8vPToOI4hMlvbM/av0MP6Kh09UIi8TjDLBcWpYZ8aS5THaNpkjR9mYsc4MlcQqwqiYoz/iUXvNa2w5eqNkkdwgR0pmOBoCwVDBxnwjUI6Qo5cZWbEt6yxi6vwXj7bs6aWjHqFl4+LiAkc4MiSBbm9vMbQpyIiAOXd1dcWJeMnIS1ogHQ8d6yq6BsiaeDiLkzgPXq6ZLnn0gNou7bHPz89Ba0UeHx9xEtasoSkGiK1BXl9fx/v7e7y9vdHfZQU7bcsgCQbHbMvg8ZxzBidG5bHrqB0IKT4wZMEW+U+HfS4dK2+7TcMuJK52YsO67VVnq9IJj1LnTHiD8AbCLgwK4Gg71U4QA2Rf9RxtmTLoXVDX9lrRBWh33Fgd0kkDMD3QoU1aoPkKJycB+OGbwXcuG5eFkkRbpk3++s2AHb6BV1EeEDYCVGetmTqJEQlPB6K4WzuZ45b6C4GtHQgmcAgycJICX8fDDhxZLUseQYnnPxNgMiGbjH7a0UIBBAQ22QjhmRJjXnpRzHHWAKNUJUaJh6Pq+qFNsJBUx/OfyWMpCzOGbISzfNkQmWWkrHscZXmjS4H1ZNJeXsfzyw1Hy89DbEq8P07aJTElh3R1AAAAAElFTkSuQmCC)}body>header{background:none}body>header h1,body>header h2{text-shadow:0px 1px 0px #999,0px 2px 0px #888,0px 3px 0px #777,0px 4px 0px #666,0px 5px 0px #555,0px 6px 0px #444,0px 7px 0px #333,0px 8px 7px #001135}body>header h2{margin-top:.5em;display:none}body>nav{-moz-box-shadow:0px 2px 5px #000;-webkit-box-shadow:0px 2px 5px #000;box-shadow:0px 2px 5px #000}body>nav li+li{border-left:none}body>nav li+li a{border-left:none}body>nav ul.main-navigation{padding-left:3px}body>nav a:hover{color:#1183ee;text-shadow:#0e6ec8 0px 0px 5px,#0e6ec8 0px 0px 7px,#1a88ef 0px 0px 9px,#1a88ef 0px 0px 11px,#000 0 0 2px}body>nav a i{color:#1183ee;text-shadow:#0e6ec8 0px 0px 5px,#0e6ec8 0px 0px 7px,#1a88ef 0px 0px 9px,#1a88ef 0px 0px 11px,#000 0 0 2px}body>nav a i.icon-home,body>nav a i.icon-book-alt,body>nav a i.icon-user{padding-right:5px}.divider{position:absolute;display:block;height:42px;width:1px;background-image:url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSI1MCUiIHN0b3AtY29sb3I9IiMyODM2M2UiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMxZTI4MmYiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA=');background-size:100%;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(50%, #28363e),color-stop(100%, #1e282f));background-image:-moz-linear-gradient(top, #28363e 50%,#1e282f 100%);background-image:-webkit-linear-gradient(top, #28363e 50%,#1e282f 100%);background-image:linear-gradient(to bottom, #28363e 50%,#1e282f 100%);margin:-.57em 0em 0em 0em;box-shadow:1px 0 0 0 rgba(255,255,255,0.1)}body>div#main{-moz-box-shadow:1px 3px 5px #000;-webkit-box-shadow:1px 3px 5px #000;box-shadow:1px 3px 5px #000}article{line-height:1.618em;overflow:hidden}article div.entry-content{word-break:break-all;word-break:break-word;text-rendering:optimizeLegibility}article h2,article h3,article h4,article h5,article h6{font-family:"PT Sans","Hiragino Sans GB","Microsoft YaHei",sans-serif;line-height:1em;text-shadow:1px 1px #efefef,2px 2px #828887}article h2{margin-bottom:.8em}article i.icon-twitter{color:#107ee5}article i.icon-facebook{color:#4e6ba9}article i.icon-google-plus{color:#c54a28}article i.icon-github{color:#404040}article section#details{height:54px;width:1200px;background:url("../images/construction.png") repeat-x 50% 0;background-size:116px 54px;margin-left:-100px;margin-bottom:.5em}article blockquote{font-style:normal;font-size:1em;line-height:1.618em;color:#666;padding:15px;border-left:0px;background-color:#f2f2f2;-moz-box-shadow:#c2c2c2 0 1px 5px inset;-webkit-box-shadow:#c2c2c2 0 1px 5px inset;box-shadow:#c2c2c2 0 1px 5px inset;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px}article blockquote p:last-child{margin:0}article blockquote footer>strong{font-style:italic}article div.footnotes{color:#878787;padding-top:1.5em;background:url("../images/divider.png") top center no-repeat}article kbd{padding:0.1em 0.6em;border:1px solid #ccc;font-size:11px;font-family:Arial,Helvetica,sans-serif;background-color:#f7f7f7;color:#333;-moz-box-shadow:0 1px 0px rgba(0,0,0,0.2),0 0 0 2px #fff inset;-webkit-box-shadow:0 1px 0px rgba(0,0,0,0.2),0 0 0 2px #fff inset;box-shadow:0 1px 0px rgba(0,0,0,0.2),0 0 0 2px #fff inset;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;display:inline-block;margin:0 0.1em;text-shadow:0 1px 0 white;line-height:1.4}body>footer{overflow:hidden;-moz-border-radius-bottomleft:0px;-webkit-border-bottom-left-radius:0px;border-bottom-left-radius:0px;-moz-border-radius-bottomright:0px;-webkit-border-bottom-right-radius:0px;border-bottom-right-radius:0px;-moz-box-shadow:1px 3px 5px #000;-webkit-box-shadow:1px 3px 5px #000;box-shadow:1px 3px 5px #000}body>footer p{margin-bottom:0}body>footer p span.theme-version{float:right;color:#9C9EA2}section.contruction-wrap{height:52px;width:200px;position:absolute;right:0;top:14px}section div.contruction{height:15px;width:200px;position:relative;margin-left:105px;background-color:#f4a100;-moz-transform:rotate(-45deg);-ms-transform:rotate(-45deg);-webkit-transform:rotate(-45deg);transform:rotate(-45deg);background-image:url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuMCIgeTE9IjEuMCIgeDI9IjEuMCIgeTI9IjAuMCI+PHN0b3Agb2Zmc2V0PSI2LjI1JSIgc3RvcC1jb2xvcj0iIzEwMTAxMCIvPjxzdG9wIG9mZnNldD0iNi4yNSUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMC4wIi8+PHN0b3Agb2Zmc2V0PSIxMi41JSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjAiLz48c3RvcCBvZmZzZXQ9IjEyLjUlIiBzdG9wLWNvbG9yPSIjMTAxMDEwIi8+PHN0b3Agb2Zmc2V0PSIxOC43NSUiIHN0b3AtY29sb3I9IiMxMDEwMTAiLz48c3RvcCBvZmZzZXQ9IjE4Ljc1JSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjAiLz48c3RvcCBvZmZzZXQ9IjI1JSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjAiLz48c3RvcCBvZmZzZXQ9IjI1JSIgc3RvcC1jb2xvcj0iIzEwMTAxMCIvPjxzdG9wIG9mZnNldD0iMzEuMjUlIiBzdG9wLWNvbG9yPSIjMTAxMDEwIi8+PHN0b3Agb2Zmc2V0PSIzMS4yNSUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMC4wIi8+PHN0b3Agb2Zmc2V0PSIzNy41JSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjAiLz48c3RvcCBvZmZzZXQ9IjM3LjUlIiBzdG9wLWNvbG9yPSIjMTAxMDEwIi8+PHN0b3Agb2Zmc2V0PSI0My43NSUiIHN0b3AtY29sb3I9IiMxMDEwMTAiLz48c3RvcCBvZmZzZXQ9IjQzLjc1JSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjAiLz48c3RvcCBvZmZzZXQ9IjUwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjAiLz48c3RvcCBvZmZzZXQ9IjUwJSIgc3RvcC1jb2xvcj0iIzEwMTAxMCIvPjxzdG9wIG9mZnNldD0iNTYuMjUlIiBzdG9wLWNvbG9yPSIjMTAxMDEwIi8+PHN0b3Agb2Zmc2V0PSI1Ni4yNSUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMC4wIi8+PHN0b3Agb2Zmc2V0PSI2Mi41JSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjAiLz48c3RvcCBvZmZzZXQ9IjYyLjUlIiBzdG9wLWNvbG9yPSIjMTAxMDEwIi8+PHN0b3Agb2Zmc2V0PSI2OC43NSUiIHN0b3AtY29sb3I9IiMxMDEwMTAiLz48c3RvcCBvZmZzZXQ9IjY4Ljc1JSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjAiLz48c3RvcCBvZmZzZXQ9Ijc1JSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjAiLz48c3RvcCBvZmZzZXQ9Ijc1JSIgc3RvcC1jb2xvcj0iIzEwMTAxMCIvPjxzdG9wIG9mZnNldD0iODEuMjUlIiBzdG9wLWNvbG9yPSIjMTAxMDEwIi8+PHN0b3Agb2Zmc2V0PSI4MS4yNSUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMC4wIi8+PHN0b3Agb2Zmc2V0PSI4Ny41JSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjAiLz48c3RvcCBvZmZzZXQ9Ijg3LjUlIiBzdG9wLWNvbG9yPSIjMTAxMDEwIi8+PHN0b3Agb2Zmc2V0PSI5My43NSUiIHN0b3AtY29sb3I9IiMxMDEwMTAiLz48c3RvcCBvZmZzZXQ9IjkzLjc1JSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjAiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMC4wIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmFkKSIgLz48L3N2Zz4g');background-size:100%;background-image:-moz-linear-gradient(45deg, #101010 6.25%,rgba(0,0,0,0) 6.25%,rgba(0,0,0,0) 12.5%,#101010 12.5%,#101010 18.75%,rgba(0,0,0,0) 18.75%,rgba(0,0,0,0) 25%,#101010 25%,#101010 31.25%,rgba(0,0,0,0) 31.25%,rgba(0,0,0,0) 37.5%,#101010 37.5%,#101010 43.75%,rgba(0,0,0,0) 43.75%,rgba(0,0,0,0) 50%,#101010 50%,#101010 56.25%,rgba(0,0,0,0) 56.25%,rgba(0,0,0,0) 62.5%,#101010 62.5%,#101010 68.75%,rgba(0,0,0,0) 68.75%,rgba(0,0,0,0) 75%,#101010 75%,#101010 81.25%,rgba(0,0,0,0) 81.25%,rgba(0,0,0,0) 87.5%,#101010 87.5%,#101010 93.75%,rgba(0,0,0,0) 93.75%,rgba(0,0,0,0) 100%);background-image:-webkit-linear-gradient(45deg, #101010 6.25%,rgba(0,0,0,0) 6.25%,rgba(0,0,0,0) 12.5%,#101010 12.5%,#101010 18.75%,rgba(0,0,0,0) 18.75%,rgba(0,0,0,0) 25%,#101010 25%,#101010 31.25%,rgba(0,0,0,0) 31.25%,rgba(0,0,0,0) 37.5%,#101010 37.5%,#101010 43.75%,rgba(0,0,0,0) 43.75%,rgba(0,0,0,0) 50%,#101010 50%,#101010 56.25%,rgba(0,0,0,0) 56.25%,rgba(0,0,0,0) 62.5%,#101010 62.5%,#101010 68.75%,rgba(0,0,0,0) 68.75%,rgba(0,0,0,0) 75%,#101010 75%,#101010 81.25%,rgba(0,0,0,0) 81.25%,rgba(0,0,0,0) 87.5%,#101010 87.5%,#101010 93.75%,rgba(0,0,0,0) 93.75%,rgba(0,0,0,0) 100%);background-image:linear-gradient(45deg, #101010 6.25%,rgba(0,0,0,0) 6.25%,rgba(0,0,0,0) 12.5%,#101010 12.5%,#101010 18.75%,rgba(0,0,0,0) 18.75%,rgba(0,0,0,0) 25%,#101010 25%,#101010 31.25%,rgba(0,0,0,0) 31.25%,rgba(0,0,0,0) 37.5%,#101010 37.5%,#101010 43.75%,rgba(0,0,0,0) 43.75%,rgba(0,0,0,0) 50%,#101010 50%,#101010 56.25%,rgba(0,0,0,0) 56.25%,rgba(0,0,0,0) 62.5%,#101010 62.5%,#101010 68.75%,rgba(0,0,0,0) 68.75%,rgba(0,0,0,0) 75%,#101010 75%,#101010 81.25%,rgba(0,0,0,0) 81.25%,rgba(0,0,0,0) 87.5%,#101010 87.5%,#101010 93.75%,rgba(0,0,0,0) 93.75%,rgba(0,0,0,0) 100%);-moz-box-shadow:rgba(255,255,255,0.2) 0px 1px 2px 1px inset,rgba(0,0,0,0.2) 0px -1px 1px 1px inset;-webkit-box-shadow:rgba(255,255,255,0.2) 0px 1px 2px 1px inset,rgba(0,0,0,0.2) 0px -1px 1px 1px inset;box-shadow:rgba(255,255,255,0.2) 0px 1px 2px 1px inset,rgba(0,0,0,0.2) 0px -1px 1px 1px inset}html body>div>div{border-right:none}html audio{width:100%}html i.icon{font-family:'Pictos Custom';-webkit-font-smoothing:antialiased;font-style:normal;font-weight:normal;font-size:22px}html ::selection{color:#fff;background:#000}html ::-moz-selection{color:#fff;background:#000}@media only screen and (min-width: 1037px){body>nav{-moz-border-radius-topleft:.4em;-webkit-border-top-left-radius:.4em;border-top-left-radius:.4em;-moz-border-radius-topright:.4em;-webkit-border-top-right-radius:.4em;border-top-right-radius:.4em}body>footer{-moz-border-radius-bottomleft:.4em;-webkit-border-bottom-left-radius:.4em;border-bottom-left-radius:.4em;-moz-border-radius-bottomright:.4em;-webkit-border-bottom-right-radius:.4em;border-bottom-right-radius:.4em}}@media only screen and (min-width: 550px){body>header>hgroup section div#banner{display:none}}@media only screen and (min-width: 992px){.divider{height:48px;margin:-.57em 0em 0em 0em}}@media only screen and (max-width: 992px){.divider{height:42px;margin:-.57em 0em 0em 0em}}@media only screen and (max-width: 768px){.divider{height:40px;margin:-.53em 0 0 0}}
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-lenciel-theme
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.8
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - lenciel
@@ -52,48 +52,20 @@ dependencies:
52
52
  - - "~>"
53
53
  - !ruby/object:Gem::Version
54
54
  version: '10.0'
55
- - !ruby/object:Gem::Dependency
56
- name: susy
57
- requirement: !ruby/object:Gem::Requirement
58
- requirements:
59
- - - ">="
60
- - !ruby/object:Gem::Version
61
- version: '0'
62
- type: :development
63
- prerelease: false
64
- version_requirements: !ruby/object:Gem::Requirement
65
- requirements:
66
- - - ">="
67
- - !ruby/object:Gem::Version
68
- version: '0'
69
- - !ruby/object:Gem::Dependency
70
- name: normalize-scss
71
- requirement: !ruby/object:Gem::Requirement
72
- requirements:
73
- - - ">="
74
- - !ruby/object:Gem::Version
75
- version: '0'
76
- type: :development
77
- prerelease: false
78
- version_requirements: !ruby/object:Gem::Requirement
79
- requirements:
80
- - - ">="
81
- - !ruby/object:Gem::Version
82
- version: '0'
83
55
  - !ruby/object:Gem::Dependency
84
56
  name: compass
85
57
  requirement: !ruby/object:Gem::Requirement
86
58
  requirements:
87
- - - ">="
59
+ - - "~>"
88
60
  - !ruby/object:Gem::Version
89
- version: '0'
61
+ version: 1.0.1
90
62
  type: :development
91
63
  prerelease: false
92
64
  version_requirements: !ruby/object:Gem::Requirement
93
65
  requirements:
94
- - - ">="
66
+ - - "~>"
95
67
  - !ruby/object:Gem::Version
96
- version: '0'
68
+ version: 1.0.1
97
69
  description:
98
70
  email:
99
71
  - lenciel@gmail.com
@@ -139,38 +111,6 @@ files:
139
111
  - _layouts/home.html
140
112
  - _layouts/page.html
141
113
  - _layouts/post.html
142
- - _sass/_base.scss
143
- - _sass/_partials.scss
144
- - _sass/base/_layout.scss
145
- - _sass/base/_solarized.scss
146
- - _sass/base/_theme.scss
147
- - _sass/base/_typography.scss
148
- - _sass/base/_utilities.scss
149
- - _sass/custom/_article.scss
150
- - _sass/custom/_background.scss
151
- - _sass/custom/_colors.scss
152
- - _sass/custom/_fonts.scss
153
- - _sass/custom/_footer.scss
154
- - _sass/custom/_footnotes.scss
155
- - _sass/custom/_header.scss
156
- - _sass/custom/_icomoon.scss
157
- - _sass/custom/_layout.scss
158
- - _sass/custom/_navigation.scss
159
- - _sass/custom/_styles.scss
160
- - _sass/custom/_tablestyle.scss
161
- - _sass/partials/_archive.scss
162
- - _sass/partials/_blog.scss
163
- - _sass/partials/_footer.scss
164
- - _sass/partials/_header.scss
165
- - _sass/partials/_navigation.scss
166
- - _sass/partials/_sharing.scss
167
- - _sass/partials/_sidebar.scss
168
- - _sass/partials/_syntax.scss
169
- - _sass/partials/sidebar/_base.scss
170
- - _sass/partials/sidebar/_delicious.scss
171
- - _sass/partials/sidebar/_googleplus.scss
172
- - _sass/partials/sidebar/_pinboard.scss
173
- - _sass/partials/sidebar/_twitter.scss
174
114
  - assets/fonts/0XxGQsSc1g4rdRdjJKZrNAzyDMXhdD8sAj6OAJTFsBI.woff2
175
115
  - assets/fonts/7dSh6BcuqDLzS2qAASIeuoX0hVgzZQUfRDuZrPvH3D8.woff2
176
116
  - assets/fonts/BJVWev7_auVaQ__OU8Qih1KPGs1ZzpMvnHX-7fPOuAc.woff2
@@ -262,7 +202,8 @@ files:
262
202
  - assets/javascripts/octopress.js
263
203
  - assets/javascripts/pinboard.js
264
204
  - assets/javascripts/twitter.js
265
- - assets/stylesheets/screen.scss
205
+ - assets/stylesheets/data-table.css
206
+ - assets/stylesheets/screen.css
266
207
  - index.html
267
208
  homepage: ''
268
209
  licenses:
data/_sass/_base.scss DELETED
@@ -1,5 +0,0 @@
1
- @import "base/utilities";
2
- @import "base/solarized";
3
- @import "base/theme";
4
- @import "base/typography";
5
- @import "base/layout";
data/_sass/_partials.scss DELETED
@@ -1,8 +0,0 @@
1
- @import "partials/header";
2
- @import "partials/navigation";
3
- @import "partials/blog";
4
- @import "partials/sharing";
5
- @import "partials/syntax";
6
- @import "partials/archive";
7
- @import "partials/sidebar";
8
- @import "partials/footer";
@@ -1,192 +0,0 @@
1
- $max-width: 1000px !default;
2
-
3
- // Padding used for layout margins
4
- $pad-min: 18px !default;
5
- $pad-narrow: 25px !default;
6
- $pad-medium: 35px !default;
7
- $pad-wide: 55px !default;
8
-
9
- // Sidebar widths used in media queries
10
- $sidebar-width-medium: 240px !default;
11
- $sidebar-pad-medium: 15px !default;
12
- $sidebar-pad-wide: 20px !default;
13
- $sidebar-width-wide: 300px !default;
14
-
15
- $indented-lists: false !default;
16
-
17
- $header-font-size: 1em !default;
18
- $header-padding-top: 1.5em !default;
19
- $header-padding-bottom: 1.5em !default;
20
-
21
- .group { @include pie-clearfix; }
22
-
23
- @mixin collapse-sidebar {
24
- float: none;
25
- width: auto;
26
- clear: left;
27
- margin: 0;
28
- padding: 0 $pad-medium 1px;
29
- background-color: lighten($sidebar-bg, 2);
30
- border-top: 1px solid lighten($sidebar-border, 4);
31
- section {
32
- &.odd, &.even { float: left; width: 48%; }
33
- &.odd { margin-left: 0; }
34
- &.even { margin-left: 4%; }
35
- }
36
- &.thirds section {
37
- width: 30%;
38
- margin-left: 5%;
39
- &.first {
40
- margin-left: 0;
41
- clear: both;
42
- }
43
- }
44
- }
45
-
46
- body {
47
- -webkit-text-size-adjust: none;
48
- max-width: $max-width;
49
- position: relative;
50
- margin: 0 auto;
51
- > header, > nav, > footer, #content > article, #content > div > article, #content > div > section {
52
- @extend .group;
53
- padding-left: $pad-min;
54
- padding-right: $pad-min;
55
- @media only screen and (min-width: 480px) {
56
- padding-left: $pad-narrow;
57
- padding-right: $pad-narrow;
58
- }
59
- @media only screen and (min-width: 768px) {
60
- padding-left: $pad-medium;
61
- padding-right: $pad-medium;
62
- }
63
- @media only screen and (min-width: 992px) {
64
- padding-left: $pad-wide;
65
- padding-right: $pad-wide;
66
- }
67
- }
68
- div.pagination {
69
- @extend .group;
70
- margin-left: $pad-min;
71
- margin-right: $pad-min;
72
- @media only screen and (min-width: 480px) {
73
- margin-left: $pad-narrow;
74
- margin-right: $pad-narrow;
75
- }
76
- @media only screen and (min-width: 768px) {
77
- margin-left: $pad-medium;
78
- margin-right: $pad-medium;
79
- }
80
- @media only screen and (min-width: 992px) {
81
- margin-left: $pad-wide;
82
- margin-right: $pad-wide;
83
- }
84
- }
85
- > header {
86
- font-size: $header-font-size;
87
- padding-top: $header-padding-top;
88
- padding-bottom: $header-padding-bottom;
89
- }
90
- }
91
-
92
- #content {
93
- overflow: hidden;
94
- > div, > article { width: 100%; }
95
- }
96
-
97
- aside.sidebar {
98
- float: none;
99
- padding: 0 $pad-min 1px;
100
- background-color: lighten($sidebar-bg, 2);
101
- border-top: 1px solid $sidebar-border;
102
- @extend .group;
103
- }
104
-
105
- .flex-content { max-width: 100%; height: auto; }
106
-
107
- .basic-alignment {
108
- &.left { float: left; margin-right: 1.5em; }
109
- &.right { float: right; margin-left: 1.5em; }
110
- &.center { display:block; margin: 0 auto 1.5em; }
111
- &.left, &.right { margin-bottom: .8em; }
112
- }
113
-
114
- .toggle-sidebar { &, .no-sidebar & { display: none; }}
115
-
116
- body.sidebar-footer {
117
- @media only screen and (min-width: 750px) {
118
- aside.sidebar{ @include collapse-sidebar; }
119
- }
120
- #content { margin-right: 0px; }
121
- .toggle-sidebar { display: none; }
122
- }
123
-
124
- @media only screen and (min-width: 550px) {
125
- body > header { font-size: $header-font-size; }
126
- }
127
- @media only screen and (min-width: 750px) {
128
- aside.sidebar { @include collapse-sidebar; }
129
- }
130
- #main, #content, .sidebar {
131
- @extend .group;
132
- }
133
- @media only screen and (min-width: 768px) {
134
- body { -webkit-text-size-adjust: auto; }
135
- body > header { font-size: $header-font-size * 1.2; }
136
- #main {
137
- padding: 0;
138
- margin: 0 auto;
139
- }
140
- #content {
141
- overflow: visible;
142
- margin-right: $sidebar-width-medium;
143
- position: relative;
144
- .no-sidebar & { margin-right: 0; border-right: 0; }
145
- .collapse-sidebar & { margin-right: 20px; }
146
- > div, > article {
147
- padding-top: $pad-medium/2;
148
- padding-bottom: $pad-medium/2;
149
- float: left;
150
- }
151
- }
152
- aside.sidebar {
153
- width: $sidebar-width-medium - $sidebar-pad-medium*2;
154
- padding: 0 $sidebar-pad-medium $sidebar-pad-medium;
155
- background: none;
156
- clear: none;
157
- float: left;
158
- margin: 0 -100% 0 0;
159
- section {
160
- width: auto; margin-left: 0;
161
- &.odd, &.even { float: none; width: auto; margin-left: 0; }
162
- }
163
- .collapse-sidebar & {
164
- @include collapse-sidebar;
165
- }
166
- }
167
- }
168
-
169
- @media only screen and (min-width: 992px) {
170
- body > header { font-size: $header-font-size * 1.3; }
171
- #content { margin-right: $sidebar-width-wide; }
172
- #content {
173
- > div, > article {
174
- padding-top: $pad-wide/2;
175
- padding-bottom: $pad-wide/2;
176
- }
177
- }
178
- aside.sidebar {
179
- width: $sidebar-width-wide - $sidebar-pad-wide*2;
180
- padding: 1.2em $sidebar-pad-wide $sidebar-pad-wide;
181
- .collapse-sidebar & {
182
- padding: { left: $pad-wide; right: $pad-wide; }
183
- }
184
- }
185
- }
186
-
187
- @if $indented-lists == false {
188
- @media only screen and (min-width: 768px) {
189
- ul, ol { margin-left: 0; }
190
- }
191
- }
192
-
@@ -1,46 +0,0 @@
1
- $base03: #002b36 !default; //darkest blue
2
- $base02: #073642 !default; //dark blue
3
- $base01: #586e75 !default; //darkest gray
4
- $base00: #657b83 !default; //dark gray
5
- $base0: #839496 !default; //medium gray
6
- $base1: #93a1a1 !default; //medium light gray
7
- $base2: #eee8d5 !default; //cream
8
- $base3: #fdf6e3 !default; //white
9
- $solar-yellow: #b58900 !default;
10
- $solar-orange: #cb4b16 !default;
11
- $solar-red: #dc322f !default;
12
- $solar-magenta: #d33682 !default;
13
- $solar-violet: #6c71c4 !default;
14
- $solar-blue: #268bd2 !default;
15
- $solar-cyan: #2aa198 !default;
16
- $solar-green: #859900 !default;
17
-
18
- $solarized: dark !default;
19
-
20
- @if $solarized == light {
21
-
22
- $_base03: $base03;
23
- $_base02: $base02;
24
- $_base01: $base01;
25
- $_base00: $base00;
26
- $_base0: $base0;
27
- $_base1: $base1;
28
- $_base2: $base2;
29
- $_base3: $base3;
30
-
31
- $base03: $_base3;
32
- $base02: $_base2;
33
- $base01: $_base1;
34
- $base00: $_base0;
35
- $base0: $_base00;
36
- $base1: $_base01;
37
- $base2: $_base02;
38
- $base3: $_base03;
39
- }
40
-
41
- /* non highlighted code colors */
42
- $pre-bg: $base03 !default;
43
- $pre-border: darken($base02, 5) !default;
44
- $pre-color: $base1 !default;
45
-
46
-
@@ -1,86 +0,0 @@
1
- $noise-bg: image-url('noise.png') top left !default;
2
- $img-border: inline-image('dotted-border.png');
3
-
4
- // Main Link Colors
5
- $link-color: lighten(#165b94, 3) !default;
6
- $link-color-hover: adjust-color($link-color, $lightness: 10, $saturation: 25) !default;
7
- $link-color-visited: adjust-color($link-color, $hue: 80, $lightness: -4) !default;
8
- $link-color-active: adjust-color($link-color-hover, $lightness: -15) !default;
9
-
10
- // Main Section Colors
11
- $main-bg: #f8f8f8 !default;
12
- $page-bg: #252525 !default;
13
- $article-border: #eeeeee !default;
14
-
15
- $header-bg: #333 !default;
16
- $header-border: lighten($header-bg, 15) !default;
17
- $title-color: #f2f2f2 !default;
18
- $subtitle-color: #aaa !default;
19
-
20
- $text-color: #222 !default;
21
- $text-color-light: #aaa !default;
22
- $type-border: #ddd !default;
23
-
24
- /* Navigation */
25
- $nav-bg: #ccc !default;
26
- $nav-bg-front: image-url('noise.png') !default;
27
- $nav-bg-back: linear-gradient(lighten($nav-bg, 8), $nav-bg, darken($nav-bg, 11)) !default;
28
- $nav-color: darken($nav-bg, 38) !default;
29
- $nav-color-hover: darken($nav-color, 25) !default;
30
- $nav-placeholder: desaturate(darken($nav-bg, 10), 15) !default;
31
- $nav-border: darken($nav-bg, 10) !default;
32
- $nav-border-top: lighten($nav-bg, 15) !default;
33
- $nav-border-bottom: darken($nav-bg, 25) !default;
34
- $nav-border-left: darken($nav-bg, 11) !default;
35
- $nav-border-right: lighten($nav-bg, 7) !default;
36
-
37
- /* Sidebar colors */
38
- $sidebar-bg: #f2f2f2 !default;
39
- $sidebar-link-color: $link-color !default;
40
- $sidebar-link-color-hover: $link-color-hover !default;
41
- $sidebar-link-color-active: $link-color-active !default;
42
- $sidebar-color: change-color(mix($text-color, $sidebar-bg, 80), $hue: hue($sidebar-bg), $saturation: saturation($sidebar-bg)/2) !default;
43
- $sidebar-border: desaturate(darken($sidebar-bg, 7), 10) !default;
44
- $sidebar-border-hover: darken($sidebar-bg, 7) !default;
45
- $sidebar-link-color-subdued: lighten($sidebar-color, 20) !default;
46
- $sidebar-link-color-subdued-hover: $sidebar-link-color-hover !default;
47
- $twitter-status-link: lighten($sidebar-link-color-subdued, 15) !default;
48
-
49
- $footer-color: #888 !default;
50
- $footer-bg: #ccc !default;
51
- $footer-bg-front: image-url('noise.png') !default;
52
- $footer-bg-back: linear-gradient(lighten($footer-bg, 8), $footer-bg, darken($footer-bg, 11)) !default;
53
- $footer-color: darken($footer-bg, 38) !default;
54
- $footer-color-hover: darken($footer-color, 10) !default;
55
- $footer-border-top: lighten($footer-bg, 15) !default;
56
- $footer-border-bottom: darken($footer-bg, 15) !default;
57
- $footer-link-color: darken($footer-bg, 38) !default;
58
- $footer-link-color-hover: darken($footer-color, 25) !default;
59
- $page-border-bottom: darken($footer-bg, 5) !default;
60
-
61
-
62
- /* Core theme application */
63
-
64
- a {
65
- @include link-colors($link-color, $hover: $link-color-hover, $focus: $link-color-hover, $visited: $link-color-visited, $active: $link-color-active);
66
- }
67
- aside.sidebar a {
68
- @include link-colors($sidebar-link-color, $hover: $sidebar-link-color-hover, $focus: $sidebar-link-color-hover, $active: $sidebar-link-color-active);
69
- }
70
- a {
71
- @include transition(color .3s);
72
- }
73
-
74
- html {
75
- background: $page-bg image-url('line-tile.png') top left;
76
- }
77
- body {
78
- > div {
79
- background: $sidebar-bg $noise-bg;
80
- border-bottom: 1px solid $page-border-bottom;
81
- > div {
82
- background: $main-bg $noise-bg;
83
- border-right: 1px solid $sidebar-border;
84
- }
85
- }
86
- }