diff options
author | Brian Picciano <bgp2396@bellsouth.net> | 2013-10-17 17:53:41 -0400 |
---|---|---|
committer | Brian Picciano <bgp2396@bellsouth.net> | 2013-10-17 17:53:41 -0400 |
commit | d4aeef6cbc816d3c877848df09f6c7e3ccf15557 (patch) | |
tree | b81b3a3414550e461b0cd22ba11d82cab2ee7287 /css/screen.css | |
parent | ccc625d18609eb9690c0d48a018ccc86c993d584 (diff) |
moved css and font into root directory, with no template magic
Diffstat (limited to 'css/screen.css')
-rw-r--r-- | css/screen.css | 253 |
1 files changed, 253 insertions, 0 deletions
diff --git a/css/screen.css b/css/screen.css new file mode 100644 index 0000000..4b5c0d4 --- /dev/null +++ b/css/screen.css @@ -0,0 +1,253 @@ +* { + margin: 0; + padding: 0; +} + +html, body { + height: 100%; +} + +body { + font-size: 16px; + background-color: white; + color: #222222; + line-height: 24px; + margin: 0; + border-top: 7px solid {{ site.theme.highlight_color }}; +} + +h1, h2, h3, h4, h5, h6 { + color: #181818; + font-weight: 600; +} + +h1.title { + font-weight: 800; +} + +h1 { + font-size: 32px; + line-height: 40px; +} + +h2 { + font-size: 24px; + line-height: 30px; +} + +h3 { + font-size: 21px; + line-height: 24px; + margin: 1em 0; +} + +ul { + margin: 1em 0; + list-style: disc; +} + +a { + color: {{ site.theme.highlight_color }}; + text-decoration: none; +} + +a:hover { + color: {{ site.theme.highlight_color }}; + text-decoration: underline; +} + +a:visited { + color: {{ site.theme.highlight_color }}; +} + +table { + font-size: inherit; + font: 100%; +} + +img { + display: block; + margin-left: auto; + margin-right: auto; +} + +ul.posts { + margin-top: 0; + list-style-type: none; + margin-bottom: 10px; +} + +ul.posts li { + line-height: 22px; + font-size: 16px; + margin-bottom: 0px; +} + +ul.posts span { + font-family: 'Lucida Console', 'Andale Mono', monospace; + color: #aaa; + padding-right: 5px; + font-size:14px; +} + +.meta { + color: #aaa; + margin: 0 0 10px 0; +} + +.site .footer { + font-size: 80%; + color: #666; + border-top: 4px solid #eee; + overflow: hidden; +} + +nav h1, nav h2 { + text-align: center; +} + +nav hr { + margin-top: 10px; + margin-bottom: 15px; + border: dotted #ddd; + border-width: 1px 0 0; +} + +#social { + margin-bottom: 10px; + font-size: 13px; +} + +#post pre { + border: 1px solid #ddd; + line-height: 1.1; + padding: 1em 1em; + margin-bottom: 20px !important; +} + +#post ul, +#post ol { + margin-left: 1.35em; +} + +#post code { + border: 1px solid #ddd; + font-family: Consolas, Menlo, Monaco, Lucida Console, Liberation Mono, DejaVu + Sans Mono, Bitstream Vera Sans Mono, Courier New, monospace, serif; + font-size: 85%; + padding: 0 .2em; +} + +#post pre code { + border: none; +} + +.sidebar { + padding-top: 25px; +} + +.sidebar p { + font-weight: 200; +} + +.sidebar a { + font-weight: 600; +} + +.content { + border-left: 1px solid #DDD; + padding-left: 40px; + padding-top: 25px; + min-height: 400px; +} + +.footer { + width: 100%; +} + +.footer { + font-size: 80%; + color: #666; + border-top: 4px solid #EEE; + overflow: hidden; +} + +.aside { + font-size: 75%; + color: #666; +} + +#home h2 { + color: {{ site.theme.highlight_color }}; +} + +#logo { + margin-bottom: 25px; +} + +#stalker { + display: inline-block; + height: 18px; + margin-left: 5px; +} + +#stalker a { + width: 29px; + overflow: hidden; + float: left; +} + +#stalker i { + font-size: 28px; + margin-right: 5px; +} + +#stalker a:hover { + text-decoration: none; + color: {{ site.theme.highlight_color }}; +} + +span.icon-hn { + font-family: "open sans", sans-serif; + line-height: 20px; + text-align: center; + font-weight: bold; + position: relative; + left: 7px; +} + +.home { + font-size: 24px; + float: right; + color: #AAA; +} + +.home:hover { + text-decoration: none; +} + +.disclaimer p { + margin-top: 5px; + font-size: 11px; + text-align: center; +} + +.footnotes { + font-size: 14px; + font-style: italic; +} + +.icon-overlay { + font-size: 16px !important; + position: relative; + bottom: 27px; + left: 5px; + color: white; +} + +.caption { + margin: 0 auto; + text-align: center; + font-size: smaller; + padding-bottom: 10px +} |