From bf6c0346d8d35a719dd1bff1cb4d573d422f99ff Mon Sep 17 00:00:00 2001 From: Thomas Citharel Date: Wed, 31 May 2017 09:31:18 +0200 Subject: WIP Signed-off-by: Thomas Citharel --- .../static/themes/material/css/profile.scss | 54 ++++++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 app/Resources/static/themes/material/css/profile.scss (limited to 'app/Resources/static/themes/material/css/profile.scss') diff --git a/app/Resources/static/themes/material/css/profile.scss b/app/Resources/static/themes/material/css/profile.scss new file mode 100644 index 00000000..d5b9a5ff --- /dev/null +++ b/app/Resources/static/themes/material/css/profile.scss @@ -0,0 +1,54 @@ +.profile { + .details { + display: flex; + flex-direction: row; + + .bio { + flex: 1; + font-size: 14px; + line-height: 18px; + padding: 5px 10px; + order: 1; + + p { + font-size: 14px; + font-weight: 400; + overflow: hidden; + word-break: normal; + word-wrap: break-word; + } + } + + .details-counters { + order: 0; + display: flex; + flex-direction: row; + } + + .counter { + width: 80px; + color: #9baec8; + padding: 5px 10px 0; + margin-bottom: 10px; + border-right: 1px solid #9baec8; + cursor: default; + position: relative; + + .counter-label { + font-size: 12px; + text-transform: uppercase; + display: block; + margin-bottom: 5px; + } + + .counter-number { + font-weight: 500; + font-size: 18px; + color: #00bcd4; + } + } + } + img.avatar { + width: 10em; + } +} -- cgit v1.2.3