diff options
author | EuAndreh <eu@euandre.org> | 2018-07-15 23:14:53 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2018-07-15 23:14:53 -0300 |
commit | aaf72b8d83425e58a6653c5085abdda393387bec (patch) | |
tree | ec11fb7900170d2b6a81ce8fda15069f50bf12ab /site | |
parent | Add Hakyll code block CSS (diff) | |
download | euandre.org-aaf72b8d83425e58a6653c5085abdda393387bec.tar.gz euandre.org-aaf72b8d83425e58a6653c5085abdda393387bec.tar.xz |
Tweak CSS
Diffstat (limited to 'site')
-rw-r--r-- | site/css/styles.css | 53 |
1 files changed, 48 insertions, 5 deletions
diff --git a/site/css/styles.css b/site/css/styles.css index 5893713..7424484 100644 --- a/site/css/styles.css +++ b/site/css/styles.css @@ -65,30 +65,44 @@ src: local('Inconsolata Bold'), local('Inconsolata-Bold'), url('/fonts/Inconsolata-Bold.woff'); } + + + +/* Main body */ + body { color: black; font-size: 16px; margin: 0px auto 0px auto; - width: 600px; + width: 700px; + background-color: #fbfbfb; + font-family: 'Linux Libertine',serif; + line-height: 140%; + text-rendering: optimizeLegibility; +} + +h1, h2, h3 { + font-family: 'Linux Biolinum',sans; } header { border-bottom: 2px solid black; margin-bottom: 30px; padding: 12px 0px 12px 0px; + font-family: 'Linux Biolinum',sans; } nav { text-align: right; + font-family: 'Linux Biolinum',sans; + color: red; } nav a { color: black; font-size: 18px; - font-weight: bold; margin-left: 12px; text-decoration: none; - text-transform: uppercase; } footer { @@ -97,7 +111,10 @@ footer { font-size: 12px; margin-top: 30px; padding: 12px 0px 12px 0px; - text-align: right; +} + +footer li { + list-style-type: none; } h1 { @@ -108,6 +125,14 @@ h2 { font-size: 20px; } +pre { + font-family: "Inconsolata",monospace; +} + +code { + font-family: "Inconsolata",monospace; +} + article .header { color: #555; font-size: 14px; @@ -122,7 +147,25 @@ article .header { text-decoration: none; } -.feed- +.simple-icon { + height: 22px; +} + +a { + color: #5b6ee1; +} + +a:hover { + color: #306082; + background-color: #f3f3f3; +} + +a:visited { + color: #306082; +} + + + /* Hakyll source code syntax highlighter */ table.sourceCode, tr.sourceCode, td.lineNumbers, td.sourceCode, table.sourceCode pre { |