diff options
author | jan <jan@ruken.pw> | 2016-11-27 20:19:39 (UTC) |
---|---|---|
committer | jan <jan@ruken.pw> | 2016-11-27 20:19:39 (UTC) |
commit | 80e7d249146c661edf80519315d5c26dd70a4d14 (patch) | |
tree | c6c86a2c7186752d32539519cbf737cb30cf87a6 /assets_src/css | |
parent | f4a485fe8227b98c417f1ecb52251fb2a9638911 (diff) |
flexy flexboxfeature/flexy-flexbox
Diffstat (limited to 'assets_src/css')
-rw-r--r-- | assets_src/css/materialize_extend.css | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/assets_src/css/materialize_extend.css b/assets_src/css/materialize_extend.css index f06d042..64b58e2 100644 --- a/assets_src/css/materialize_extend.css +++ b/assets_src/css/materialize_extend.css | |||
@@ -1,3 +1,24 @@ | |||
1 | span.badge.new.no-caption::after { | 1 | span.badge.new.no-caption::after { |
2 | content: ""; | 2 | content: ""; |
3 | } | 3 | } |
4 | |||
5 | /* some flexy flexbox stuff */ | ||
6 | .flex { | ||
7 | display: flex; | ||
8 | flex-direction: row; | ||
9 | flex-wrap: wrap; | ||
10 | align-items: stretch; | ||
11 | } | ||
12 | |||
13 | .flex .flex-card { | ||
14 | display: flex; | ||
15 | margin-right: 16px; | ||
16 | max-width: 400px; | ||
17 | } | ||
18 | |||
19 | .flex .flex-card .pull-down { | ||
20 | position: absolute; | ||
21 | bottom: 0; | ||
22 | left: 0; | ||
23 | width: 100%; | ||
24 | } | ||