From b3967c83cbdba7f44c2ecef09d3e80801106ac81 Mon Sep 17 00:00:00 2001 From: Ben Burwell Date: Tue, 11 Aug 2015 22:56:34 -0400 Subject: Update to Tiny CSS --- _sass/tiny/_utility.scss | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 _sass/tiny/_utility.scss (limited to '_sass/tiny/_utility.scss') diff --git a/_sass/tiny/_utility.scss b/_sass/tiny/_utility.scss new file mode 100644 index 0000000..1213070 --- /dev/null +++ b/_sass/tiny/_utility.scss @@ -0,0 +1,39 @@ +// Layout +.centered { + display: block; + float: none; + margin-left: auto; + margin-right: auto; +} + +// Text alignment +.text-right { text-align: right; } +.text-left { text-align: left; } +.text-center { text-align: center; } + +.sans { + font-family: $sans; +} + +.muted { + color: $muted-color; + a { + color: $muted-color; + &:active, + &:hover { + color: $alternate-color; + } + } +} + +.fancy-table { + font-family: $sans; + font-size: 80%; + td { + padding: 7px; + } + + tbody tr:nth-child(even) { + background-color: #eee; + } +} -- cgit v1.2.3