Skip to content

Instantly share code, notes, and snippets.

@jazzsequence
Created March 14, 2013 16:17
Show Gist options
  • Save jazzsequence/5162736 to your computer and use it in GitHub Desktop.
Save jazzsequence/5162736 to your computer and use it in GitHub Desktop.
Custom CSS for chrisreynolds.io -- details here: http://s3q.us/ne
/* custom css */
@import url(../style.css); /* call the parent css */
body {
background: #282a36; /* Old browsers */
background: -moz-linear-gradient(top, #282a36 25%, #282b3d 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(25%,#282a36), color-stop(100%,#282b3d)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #282a36 25%,#282b3d 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #282a36 25%,#282b3d 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, #282a36 25%,#282b3d 100%); /* IE10+ */
background: linear-gradient(to bottom, #282a36 25%,#282b3d 100%); /* W3C */
color: #eee;
}
p {
margin: 0 0 20px;
}
p + p {
text-indent: 0;
}
h1 {
font-size: 34px;
}
h2 {
font-size: 28px;
}
h1, h2, h3 {
font-family: 'Source Sans Pro', sans-serif;
}
h1, h2, h3, h4, h5, h6 {
color: #fff;
margin: 0 0 20px;
}
a, .post p a {
color: #fff;
border-bottom-color: #59acf3;
}
a:hover, a:active,
.post p a:hover, .post p a:active {
color: #C5D2DD;
}
small {
font-family: 'Source Sans Pro', sans-serif;
font-size: 14px;
}
code {
color: #ff4a14;
}
pre code {
border: none;
padding: 0;
border-radius: 0;
}
pre {
max-width: 80%;
white-space: pre-wrap;
padding: 15px;
margin: 0 0 20px;
border: 1px dashed #bf370f;
border-radius: 7px
}
.button {
background-color: #3B3E4F;
border-color: #282b3d;
}
article {
border-bottom-color: #181921;
}
hr {
border: 1px solid #181921;
border-top: none;
}
.thumbnail {
background-color: #3B3E4F;
border-color: #181921;
}
.meta ul {
border-right-color: #181921;
}
.meta ul li:last-child {
background-color: #3B3E4F;
border-color: #181921;
}
.meta ul li:after {
color: #181921;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment