Skip to content

Instantly share code, notes, and snippets.

@kgrz
Created September 13, 2013 14:37
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 4 You must be signed in to fork a gist
  • Save kgrz/6551567 to your computer and use it in GitHub Desktop.
Save kgrz/6551567 to your computer and use it in GitHub Desktop.
/* A modified default Jekyll theme
/*
/* Improvements include:
/*
/* 1. Responsive Template: Added media-queries so that it works well
/* on a wide-range of screens.
/*
The MIT License (MIT)
Copyright (c) 2013 Kashyap
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
/*****************************************************************************/
/*
/* Common
/*
/*****************************************************************************/
/* Global Reset */
* {
margin: 0;
padding: 0;
}
html, body { height: 100%; }
body {
background-color: #FFF;
font-size: 130%;
font-family: calluna, Calluna, Georgia;
font-weight: 300;
line-height: 1.55em;
padding: 0 2em;
text-rendering: optimizeLegibility;
color: #555;
}
h1, h2, h3, h4, h5, h6 {
color: #333;
font-family: adelle, Adelle, Georgia;
font-weight: 800;
text-rendering: optimizeLegibility;
}
h1 {
font-size: 170%;
margin-top: 1em;
margin-bottom: 0.5em;
line-height: 1.4em;
}
h2 {
font-size: 150%;
margin-top: 1em;
margin-bottom: 0.5em;
line-height: 1.4em;
}
h3 {
font-size: 130%;
margin-top: 3.25em;
margin-bottom: 0.5em;
line-height: 1.4em;
}
h4 {
font-size: 110%;
margin-top: 2em;
margin-bottom: 0.5em;
line-height: 1.4em;
}
h5 {
font-size: 100%;
margin-top: 1.5em;
margin-bottom: 0.5em;
line-height: 1.4em;
}
p {
margin: 0.5em 0 2.5em;
}
a { color: #00a; }
a:hover { color: #000; }
a:visited { color: #a0a; }
blockquote {
padding: 0.1em 1.3em;
background: #fafafa;
border-left: 5px #81E26D solid;
color: #666;
}
/*****************************************************************************/
/*
/* Home
/*
/*****************************************************************************/
ul.posts {
list-style-type: none;
margin-bottom: 2em;
}
ul.posts li {
line-height: 1.75em;
margin-bottom: 1em;
}
ul.posts span {
color: #aaa;
font-family: "Inconsolata", Consolas, "Courier New", monospace;
font-size: 80%;
display: list-item;
}
/*****************************************************************************/
/*
/* Site
/*
/*****************************************************************************/
.site {
margin: auto;
max-width: 34em;
padding: 0 1em;
color: #333;
}
.site .header a {
font-weight: bold;
text-decoration: none;
}
.site .header h1.title {
display: inline-block;
font-size: 180%;
}
.site .header h1.title a {
color: #a00;
}
.site .header h1.title a:hover {
color: #000;
}
.site .header a.extra {
color: #aaa;
margin-left: 1em;
}
.site .header a.extra:hover {
color: #000;
}
.site .meta {
color: #aaa;
}
.site .footer {
font-size: 80%;
color: #666;
border-top: 4px solid #eee;
margin-top: 2em;
overflow: hidden;
}
.site .footer .contact {
float: left;
margin-right: 3em;
}
.site .footer .contact a {
color: #8085C1;
}
.site .footer .rss {
margin-top: 1.1em;
margin-right: -.2em;
float: right;
}
.site .footer .rss img {
border: 0;
}
pre {
font-family: 'PT Mono', Consolas, "Inconsolata", "Courier New", monospace;
overflow: auto;
margin: 1em auto;
}
code {
font-family: 'PT Mono', Consolas, "Inconsolata", "Courier New", monospace;
}
/*****************************************************************************/
/*
/* Posts
/*
/*****************************************************************************/
/* standard */
.post pre {
border: 1px solid #ddd;
background-color: #eef;
line-height: 1em;
padding: 0.2em 0.5em;
}
.post ul, .post ol {
margin-left: 1.5em;
margin-bottom: 1.5em;
}
.post code {
border: 1px solid #ddd;
background-color: #eef;
font-size: 0.7em;
}
.post pre code {
border: none;
}
/* terminal */
.post pre.terminal {
border: 1px solid #000;
background-color: #333;
color: #FFF;
}
.post pre.terminal code {
background-color: #333;
}
.post {
text-align: justify;
}
/************************************************************************/
/* Media Queries
/*
/************************************************************************/
@media screen and (max-width: 1000px) {
body {
font-size: 130%;
padding: 0 4em;
}
.post code {
font-size: 85%;
}
pre code {
line-height: 1.6em;
}
}
@media screen and (max-width: 800px) {
body {
font-size: 125%;
padding: 0 1.5em;
}
.post code {
font-size: 80%;
}
pre code {
font-size: 80%;
}
}
@media screen and (max-width: 500px) {
body {
font-size: 120%;
padding: 0 0.5em;
}
.footer {
text-align: center;
padding: 1em;
}
.contact {
width: 100%;
}
.post code {
font-size: 85%;
}
}
@media screen and (max-width: 320px) {
body {
padding: 0;
}
}
@gembarrett
Copy link

Hey, nice work. I've done a quick SASS port in case you're interested: https://gist.github.com/gembarrett/9587071

@kgrz
Copy link
Author

kgrz commented Apr 2, 2014

That's great, thanks :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment