Skip to content

Commit

Permalink
latest poole
Browse files Browse the repository at this point in the history
  • Loading branch information
mdo committed Jun 23, 2014
1 parent 6862d74 commit 7baeede
Showing 1 changed file with 31 additions and 4 deletions.
35 changes: 31 additions & 4 deletions public/css/poole.css
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ html {
font-size: 16px;
line-height: 1.5;
}
@media (min-width: 38rem) {
@media (min-width: 38em) {
html {
font-size: 20px;
}
Expand All @@ -70,6 +70,9 @@ a {
color: #268bd2;
text-decoration: none;
}
a strong {
color: inherit;
}
/* `:focus` is linked to `:hover` for basic accessibility */
a:hover,
a:focus {
Expand Down Expand Up @@ -175,6 +178,8 @@ pre code {
color: inherit;
background-color: transparent;
}

/* Pygments via Jekyll */
.highlight {
margin-bottom: 1rem;
border-radius: 4px;
Expand All @@ -183,6 +188,28 @@ pre code {
margin-bottom: 0;
}

/* Gist via GitHub Pages */
.gist .gist-file {
font-family: Menlo, Monaco, "Courier New", monospace !important;
}
.gist .markdown-body {
padding: 15px;
}
.gist pre {
padding: 0;
background-color: transparent;
}
.gist .gist-file .gist-data {
font-size: .8rem !important;
line-height: 1.4;
}
.gist code {
padding: 0;
color: inherit;
background-color: transparent;
border-radius: 0;
}

/* Quotes */
blockquote {
padding: .5rem 1rem;
Expand All @@ -193,7 +220,7 @@ blockquote {
blockquote p:last-child {
margin-bottom: 0;
}
@media (min-width: 30rem) {
@media (min-width: 30em) {
blockquote {
padding-right: 5rem;
padding-left: 1.25rem;
Expand All @@ -202,9 +229,9 @@ blockquote p:last-child {

img {
display: block;
max-width: 100%;
margin: 0 0 1rem;
border-radius: 5px;
max-width: 100%;
}

/* Tables */
Expand Down Expand Up @@ -382,7 +409,7 @@ a.pagination-item:hover {
background-color: #f5f5f5;
}

@media (min-width: 30rem) {
@media (min-width: 30em) {
.pagination {
margin: 3rem 0;
}
Expand Down

0 comments on commit 7baeede

Please sign in to comment.