mirror of
https://github.com/jimeh/jimeh.me-v3.0.git
synced 2026-02-19 05:46:40 +00:00
193 lines
2.9 KiB
CSS
Executable File
193 lines
2.9 KiB
CSS
Executable File
/* @override http://new.jimeh.meh/stylesheets/text.css */
|
|
|
|
/*
|
|
960 Grid System ~ Text CSS.
|
|
Learn more ~ http://960.gs/
|
|
|
|
Licensed under GPL and MIT.
|
|
*/
|
|
|
|
/* `Basic HTML
|
|
----------------------------------------------------------------------------------------------------*/
|
|
|
|
body {
|
|
font: 16px/1.5 'Colaborate-ThinRegular', 'Helvetica Neue', Arial, 'Liberation Sans', FreeSans, sans-serif;
|
|
}
|
|
|
|
a {
|
|
color: #1193F6;
|
|
text-decoration: none;
|
|
}
|
|
a:hover {
|
|
border-bottom: 1px dotted;
|
|
}
|
|
|
|
b, strong {
|
|
font-family: 'Colaborate-RegularRegular' 'Helvetica Neue', Arial, 'Liberation Sans', FreeSans, sans-serif;
|
|
font-weight: normal;
|
|
}
|
|
|
|
blockquote {
|
|
font-family: Georgia;
|
|
font-style: italic;
|
|
font-size: 42px;
|
|
line-height: 0.3em;
|
|
margin: 0px 20px;
|
|
}
|
|
blockquote p {
|
|
font-size: 14px;
|
|
line-height: 1.4;
|
|
}
|
|
blockquote b, blockquote strong {
|
|
font-family: Georgia;
|
|
font-style: italic;
|
|
font-weight: bold;
|
|
font-size: 14px;
|
|
line-height: 1.4;
|
|
}
|
|
blockquote:before {
|
|
color: #E6E6E6;
|
|
content: '“';
|
|
float: left;
|
|
padding-top: 10px;
|
|
padding-right: 10px;
|
|
margin-left: -28px;
|
|
}
|
|
|
|
hr {
|
|
border: 0 #ccc solid;
|
|
border-top-width: 1px;
|
|
clear: both;
|
|
height: 0;
|
|
}
|
|
|
|
/* `Headings
|
|
----------------------------------------------------------------------------------------------------*/
|
|
|
|
h1, h2, h3, h4, h5, h6 {
|
|
font-family: 'Colaborate-ThinRegular', 'Helvetica Neue', Arial, 'Liberation Sans', FreeSans, sans-serif;
|
|
font-weight: normal;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 25px;
|
|
}
|
|
|
|
h2 {
|
|
font-size: 23px;
|
|
}
|
|
|
|
h3 {
|
|
font-size: 21px;
|
|
}
|
|
|
|
h4 {
|
|
font-size: 19px;
|
|
}
|
|
|
|
h5 {
|
|
font-size: 17px;
|
|
}
|
|
|
|
h6 {
|
|
font-size: 15px;
|
|
}
|
|
|
|
/* `Spacing
|
|
----------------------------------------------------------------------------------------------------*/
|
|
|
|
ol {
|
|
list-style: decimal;
|
|
}
|
|
|
|
ul {
|
|
list-style: disc;
|
|
}
|
|
|
|
li {
|
|
margin-left: 30px;
|
|
}
|
|
|
|
p,
|
|
dl,
|
|
hr,
|
|
h1,
|
|
h2,
|
|
h3,
|
|
h4,
|
|
h5,
|
|
h6,
|
|
ol,
|
|
ul,
|
|
pre,
|
|
table,
|
|
address,
|
|
fieldset {
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
|
|
/* `Monospace
|
|
----------------------------------------------------------------------------------------------------*/
|
|
|
|
code, pre, .gist, .gist-data, .gist-meta {
|
|
font-family: 'DejaVuSansMonoBook', Menlo, "Courier New" !important;
|
|
font-size: 12px !important;
|
|
}
|
|
pre, code {
|
|
background-color: #F8F8FF;
|
|
border: 1px solid #DEDEDE;
|
|
padding: 1px 3px;
|
|
}
|
|
pre {
|
|
background-color: #F8F8FF;
|
|
border: 1px solid #DEDEDE;
|
|
padding: 0.25em 0.5em;
|
|
margin-left: 20px;
|
|
margin-right: 20px;
|
|
}
|
|
pre code {
|
|
background-color: none;
|
|
border: none;
|
|
padding: 0px;
|
|
}
|
|
|
|
.gist {
|
|
position: relative;
|
|
margin-bottom: 20px !important;
|
|
margin-left: 20px;
|
|
margin-right: 20px;
|
|
}
|
|
.gist a:hover {
|
|
border-bottom: none !important;
|
|
text-decoration: underline !important;
|
|
}
|
|
.gist-data {
|
|
border-bottom: none !important;
|
|
}
|
|
.gist .gist-meta {
|
|
font-size: 11px !important;
|
|
position: absolute;
|
|
left: 0px;
|
|
bottom: -27px;
|
|
right: 0px;
|
|
display: none;
|
|
}
|
|
.gist:hover .gist-meta {
|
|
border: 1px solid #DEDEDE;
|
|
display: block;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|