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 ----------------------------------------------- */