2016-02-14 22:05:01 +01:00
|
|
|
* { margin: 0; padding: 0; border: 0; }
|
|
|
|
|
|
|
|
body {
|
2016-02-15 01:22:42 +01:00
|
|
|
background-attachment: fixed;
|
|
|
|
background-color: #111111;
|
|
|
|
background-image: url('../img/background.png');
|
|
|
|
background-position: center;
|
|
|
|
background-size: cover;
|
|
|
|
color: #ffffff;
|
2016-02-14 23:09:00 +01:00
|
|
|
font-family: 'open_sansregular', sans-serif;
|
2016-02-14 22:05:01 +01:00
|
|
|
font-size: 15px;
|
|
|
|
line-height: 1.2em;
|
|
|
|
padding-top: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
pre {
|
|
|
|
background-color: #111111;
|
|
|
|
border-radius: 4px;
|
2016-02-15 01:22:42 +01:00
|
|
|
color: #bfbfbf;
|
|
|
|
margin: 20px 0;
|
2016-02-14 22:05:01 +01:00
|
|
|
overflow: auto;
|
2016-02-15 01:22:42 +01:00
|
|
|
padding: 5px;
|
2016-02-14 22:05:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
a { text-decoration: none; color: #0074d9; }
|
|
|
|
a:hover { text-decoration: underline; }
|
|
|
|
a:visited { color: #f012be; }
|
|
|
|
|
|
|
|
pre, code, tt { font-family: 'FantasqueSansMono-Regular'; }
|
|
|
|
|
2016-02-14 23:09:00 +01:00
|
|
|
h1 { font-size: 1.6em; font-family: 'open_sansregular', sans-serif; font-weight: 700; text-align: center; }
|
2016-02-14 22:05:01 +01:00
|
|
|
h2 { font-size: 1.5em; }
|
|
|
|
h3 { font-size: 1.4em; }
|
|
|
|
h4 { font-size: 1.3em; }
|
|
|
|
h5 { font-size: 1.2em; }
|
|
|
|
h6 { font-size: 1.1em; }
|
|
|
|
|
|
|
|
header, p, footer { margin-bottom: 15px; }
|
|
|
|
h2 { margin-top: 15px; margin-bottom: 10px; }
|
|
|
|
hr { margin: 8px 0 15px 0; border: 1px solid #808080; }
|
|
|
|
|
|
|
|
article h1 { font-size: 1.5em; text-align: left; margin-bottom: 2px; }
|
|
|
|
article h2 { font-size: 1.4em; letter-spacing: 1px; }
|
|
|
|
article h3 { font-size: 1.3em; }
|
|
|
|
article h4 { font-size: 1.2em; }
|
|
|
|
article h5 { font-size: 1.1em; }
|
|
|
|
article h6 { font-size: 1.0em; }
|
|
|
|
|
|
|
|
article h1 small {
|
|
|
|
display: block;
|
|
|
|
font-size: 0.6em;
|
2016-02-14 23:09:00 +01:00
|
|
|
font-family: 'open_sansregular', sans-serif;
|
2016-02-14 22:05:01 +01:00
|
|
|
font-weight: normal;
|
|
|
|
}
|
|
|
|
|
|
|
|
article ul { margin-left: 1em; }
|
|
|
|
|
|
|
|
#content, #site-header, #site-footer { max-width: 725px; margin: 0 auto; }
|
|
|
|
#site-header, #site-footer, #page-navigation, ol, ul { margin-bottom: 15px !important; }
|
|
|
|
#site-navigation ul, ul.tags { float: right; list-style: none; }
|
|
|
|
#site-navigation li { display: inline-block; margin-left: 7px; }
|
2016-02-15 01:48:13 +01:00
|
|
|
#site-footer { margin-top: 15px !important; }
|
2016-02-14 22:05:01 +01:00
|
|
|
|
|
|
|
ul.tags li {
|
|
|
|
display: inline-block;
|
|
|
|
background-color: #eeeeee;
|
|
|
|
padding: 3px 5px;
|
|
|
|
border-radius: 4px;
|
|
|
|
margin-left: 5px;
|
|
|
|
text-transform: uppercase;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul.tags li a {
|
|
|
|
color: #111111;
|
|
|
|
font-family: 'FantasqueSansMono-Regular';
|
|
|
|
}
|
|
|
|
|
|
|
|
#page-navigation ul { list-style: none; }
|
|
|
|
#page-navigation li.prev { float: left; }
|
|
|
|
#page-navigation li.next { float: right; }
|
|
|
|
|
|
|
|
.clear { clear: both; }
|
|
|
|
.center { text-align: center; }
|
|
|
|
|
|
|
|
pre.src {
|
|
|
|
position: relative;
|
2016-02-21 15:55:24 +01:00
|
|
|
overflow: auto;
|
2016-02-14 22:05:01 +01:00
|
|
|
}
|
|
|
|
pre.src:before {
|
|
|
|
display: none;
|
|
|
|
position: absolute;
|
|
|
|
background-color: white;
|
|
|
|
top: -10px;
|
|
|
|
right: 10px;
|
|
|
|
padding: 3px;
|
|
|
|
border: 1px solid black;
|
|
|
|
color: black;
|
|
|
|
border-radius: 3px;
|
|
|
|
}
|
|
|
|
pre.src:hover:before { display: inline; }
|
|
|
|
|
|
|
|
pre.src-emacs-lisp:before { content: 'Emacs Lisp'; }
|
|
|
|
pre.src-makefile:before { content: 'Makefile'; }
|
|
|
|
pre.src-makefile-gmake:before { content: 'GNUMakefile'; }
|
2016-02-14 22:44:22 +01:00
|
|
|
pre.src-python:before { content: 'Python'; }
|
2016-02-14 22:48:41 +01:00
|
|
|
pre.src-scheme:before { content: 'Scheme'; }
|
2016-02-14 22:54:32 +01:00
|
|
|
pre.src-ruby:before { content: 'Ruby'; }
|
2016-02-21 15:56:23 +01:00
|
|
|
pre.src-dockerfile:before { content: 'Dockerfile'; }
|
2016-02-14 22:30:03 +01:00
|
|
|
|
2016-02-15 01:22:42 +01:00
|
|
|
.footnum { float: left; clear: left; padding-right: 0.5em; }
|
|
|
|
|
|
|
|
#content {
|
|
|
|
background-color: #ffffff;
|
|
|
|
color: #111111;
|
|
|
|
padding: 2em;
|
|
|
|
}
|