diff options
author | rtz12 <koenig@fagott.pw> | 2017-04-12 17:08:18 (UTC) |
---|---|---|
committer | rtz12 <koenig@fagott.pw> | 2017-04-12 17:08:18 (UTC) |
commit | 1ca3718b9f0aa43ef06677c899184526b7359120 (patch) | |
tree | 7ff841ed428ae0407f77d4a9b49dd344b9b006a6 /assets_src/css | |
parent | 1d8f9871455ac4e7a124b82a24a31ed18ed961aa (diff) | |
parent | 6243b499153e43a2226a6c490afbe230e04b4677 (diff) |
Merge branch 'master' of projekte.fagott.pw:grilist
Diffstat (limited to 'assets_src/css')
-rw-r--r-- | assets_src/css/materialize_extend.css | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/assets_src/css/materialize_extend.css b/assets_src/css/materialize_extend.css index f06d042..46f92ee 100644 --- a/assets_src/css/materialize_extend.css +++ b/assets_src/css/materialize_extend.css | |||
@@ -1,3 +1,23 @@ | |||
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 .card { | ||
20 | display: flex; | ||
21 | flex-direction: column; | ||
22 | justify-content: space-between; | ||
23 | } | ||