From 9952ec5bfad8cd0c93911a5ea826ed9fe86bbb28 Mon Sep 17 00:00:00 2001 From: Ricardo Rauch Date: Sat, 28 Sep 2013 06:36:39 -0300 Subject: [PATCH] fixes css --- style.css | 20 ++++++++++++++++++++ style.styl | 31 +++++++++++++++++++++++++++++++ 2 files changed, 51 insertions(+) diff --git a/style.css b/style.css index 818f73b..f900690 100755 --- a/style.css +++ b/style.css @@ -8,6 +8,26 @@ Version: 1.4 Licence: http://creativecommons.org/licenses/by-nc-nd/3.0/deed.en_US Description: Symbol is a tight, visually clean and well-structured theme that allows you to focus on reading. */ +/* General */ +a { + outline: none !important; +} +/* Alignment */ +.alignleft { + display: inline; + float: left; + margin-right: 1.5em; +} +.alignright { + display: inline; + float: right; + margin-left: 1.5em; +} +.aligncenter { + clear: both; + display: block; + margin: 0 auto; +} /* Snap.js ----------------------------------------------- */ .snap-content { diff --git a/style.styl b/style.styl index f30637e..abfb699 100755 --- a/style.styl +++ b/style.styl @@ -9,6 +9,37 @@ Licence: http://creativecommons.org/licenses/by-nc-nd/3.0/deed.en_US Description: Symbol is a tight, visually clean and well-structured theme that allows you to focus on reading. */ +// You are free: +// to Share — to copy, distribute and transmit the work + +// Under the following conditions: +// Attribution — You must attribute the work in the manner specified by the author or licensor (but not in any way that suggests that they endorse you or your use of the work). +// Noncommercial — You may not use this work for commercial purposes. +// No Derivative Works — You may not alter, transform, or build upon this work. + + +/* General */ +a{ outline: none !important;} + +/* Alignment */ +.alignleft { + display: inline; + float: left; + margin-right: 1.5em; +} +.alignright { + display: inline; + float: right; + margin-left: 1.5em; +} +.aligncenter { + clear: both; + display: block; + margin: 0 auto; +} + + + /* Snap.js ----------------------------------------------- */