From 4f171c215a586f142785871815e6dd2502808d47 Mon Sep 17 00:00:00 2001 From: Andrew Abogado Date: Sat, 7 Feb 2015 12:36:53 +0800 Subject: [PATCH] AA: Add stats UI component style --- src/main/webapp/static/app/styles/main.scss | 54 ++++++++++++++++++++- 1 file changed, 53 insertions(+), 1 deletion(-) diff --git a/src/main/webapp/static/app/styles/main.scss b/src/main/webapp/static/app/styles/main.scss index adb2c82ef..476bb194c 100644 --- a/src/main/webapp/static/app/styles/main.scss +++ b/src/main/webapp/static/app/styles/main.scss @@ -822,4 +822,56 @@ label { color: $gray-light; font-size: 20px; } -} \ No newline at end of file +} + +/* Stas */ +.stats { + padding: 10px; + + ul{ + padding: 0; + } + + li { + border-right: 1px solid $gray-lighter; + color: $headings-color; + display: inline; + float: left; + font-size: 16px; + font-weight: 600; + line-height: 22px; + padding: 0 10px; + + &:first-child { + padding-left: 0; + } + + &:last-child { + border-right: 0; + padding-right: 0; + } + } + + span { + color: $text-color; + display: block; + font-size: 11px; + font-weight: normal; + text-transform: uppercase; + } +} + +.stats-lg { + padding: 20px; + + li { + font-size: 36px; + font-weight: 500; + line-height: normal; + padding: 0 20px; + } + + span { + font-size: 13px; + } +}