diff options
Diffstat (limited to 'app/Resources/static')
-rw-r--r-- | app/Resources/static/themes/material/css/index.scss | 1 | ||||
-rwxr-xr-x | app/Resources/static/themes/material/css/layout.scss | 6 | ||||
-rw-r--r-- | app/Resources/static/themes/material/css/profile.scss | 54 |
3 files changed, 61 insertions, 0 deletions
diff --git a/app/Resources/static/themes/material/css/index.scss b/app/Resources/static/themes/material/css/index.scss index 8300e430..a360b99b 100644 --- a/app/Resources/static/themes/material/css/index.scss +++ b/app/Resources/static/themes/material/css/index.scss | |||
@@ -9,6 +9,7 @@ | |||
9 | @import 'nav'; | 9 | @import 'nav'; |
10 | @import 'sidenav'; | 10 | @import 'sidenav'; |
11 | @import 'notifications'; | 11 | @import 'notifications'; |
12 | @import 'profile'; | ||
12 | @import 'various'; | 13 | @import 'various'; |
13 | 14 | ||
14 | /* Tools */ | 15 | /* Tools */ |
diff --git a/app/Resources/static/themes/material/css/layout.scss b/app/Resources/static/themes/material/css/layout.scss index cfdbf2b3..6fd14335 100755 --- a/app/Resources/static/themes/material/css/layout.scss +++ b/app/Resources/static/themes/material/css/layout.scss | |||
@@ -18,6 +18,12 @@ body { | |||
18 | border-bottom: 1px solid #ddd; | 18 | border-bottom: 1px solid #ddd; |
19 | } | 19 | } |
20 | 20 | ||
21 | nav, | ||
22 | body:not(.reset-left) main, | ||
23 | footer { | ||
24 | padding-left: 240px; | ||
25 | } | ||
26 | |||
21 | main, | 27 | main, |
22 | #content, | 28 | #content, |
23 | .valign-wrapper { | 29 | .valign-wrapper { |
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 @@ | |||
1 | .profile { | ||
2 | .details { | ||
3 | display: flex; | ||
4 | flex-direction: row; | ||
5 | |||
6 | .bio { | ||
7 | flex: 1; | ||
8 | font-size: 14px; | ||
9 | line-height: 18px; | ||
10 | padding: 5px 10px; | ||
11 | order: 1; | ||
12 | |||
13 | p { | ||
14 | font-size: 14px; | ||
15 | font-weight: 400; | ||
16 | overflow: hidden; | ||
17 | word-break: normal; | ||
18 | word-wrap: break-word; | ||
19 | } | ||
20 | } | ||
21 | |||
22 | .details-counters { | ||
23 | order: 0; | ||
24 | display: flex; | ||
25 | flex-direction: row; | ||
26 | } | ||
27 | |||
28 | .counter { | ||
29 | width: 80px; | ||
30 | color: #9baec8; | ||
31 | padding: 5px 10px 0; | ||
32 | margin-bottom: 10px; | ||
33 | border-right: 1px solid #9baec8; | ||
34 | cursor: default; | ||
35 | position: relative; | ||
36 | |||
37 | .counter-label { | ||
38 | font-size: 12px; | ||
39 | text-transform: uppercase; | ||
40 | display: block; | ||
41 | margin-bottom: 5px; | ||
42 | } | ||
43 | |||
44 | .counter-number { | ||
45 | font-weight: 500; | ||
46 | font-size: 18px; | ||
47 | color: #00bcd4; | ||
48 | } | ||
49 | } | ||
50 | } | ||
51 | img.avatar { | ||
52 | width: 10em; | ||
53 | } | ||
54 | } | ||