summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDimitri Sokolyuk <demon@dim13.org>2015-04-06 15:00:29 +0200
committerDimitri Sokolyuk <demon@dim13.org>2015-04-06 15:00:29 +0200
commit1d9b662b25e04539ecf6b65906eeacea1ce035a2 (patch)
tree6f0e64540036f152095f17ff5d4cd1ff72c56157
parent1ca0e11c15d4b5692b9b95c660689fd245ee66bd (diff)
Add style
-rw-r--r--static/style.css72
1 files changed, 72 insertions, 0 deletions
diff --git a/static/style.css b/static/style.css
new file mode 100644
index 0000000..2dbadf9
--- /dev/null
+++ b/static/style.css
@@ -0,0 +1,72 @@
+body {
+ margin: 5% 10%;
+ color: #222;
+ padding: 1ex 1em;
+ font-family: 'Abel', sans-serif;
+}
+h1, h2, h3, h4, header, footer {
+ font-family: 'Raleway', sans-serif;
+ margin: 1em 0;
+}
+h1, h2 {
+ text-shadow: 1px 1px #CCC;
+}
+pre, code, kbd {
+ font-family: 'Anonymous Pro', monospace;
+}
+pre {
+ font-size: smaller;
+ background-color: #EEE;
+ overflow: auto;
+ padding: 1ex 2ex;
+}
+img, pre {
+ border-radius: 1ex;
+}
+time, address, #tags {
+ font-size: smaller;
+ color: #999;
+}
+#index td:nth-child(odd) {
+ text-align: right;
+}
+#index td {
+ vertical-align: top;
+ padding: 0.5ex;
+}
+header a, aside a {
+ color: #F50;
+}
+a {
+ text-decoration: none;
+ color: #05A;
+}
+aside {
+ float: right;
+ padding-left: 1em;
+ margin: 0 0 1em 2em;
+ width: 10em;
+ border-left: thin solid #999;
+ color: #555;
+
+}
+aside ul {
+ padding: 0pt;
+}
+aside p, aside ul {
+ margin: 1em 1ex;
+}
+aside li {
+ list-style-type: none;
+ margin-bottom: 0.5ex;
+}
+article {
+ margin-bottom: 3em;
+}
+#figcaption {
+ font-style: italic;
+ margin-bottom: 1em;
+}
+address {
+ font-style: italic;
+}