diff options
author | zotlabs <mike@macgirvin.com> | 2017-12-05 21:06:41 -0800 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2017-12-05 21:06:41 -0800 |
commit | 157966eb115606ef1d25fc55e90cb25fec1b6333 (patch) | |
tree | 2125f7a55ae9d28de5d57a5d54f5578b27f7c80f /view | |
parent | b7ca2b41cc35490d595e549f8b99c3991d27cb04 (diff) | |
download | volse-hubzilla-157966eb115606ef1d25fc55e90cb25fec1b6333.tar.gz volse-hubzilla-157966eb115606ef1d25fc55e90cb25fec1b6333.tar.bz2 volse-hubzilla-157966eb115606ef1d25fc55e90cb25fec1b6333.zip |
don't force tile photos to be square, as there's no way to sensibly auto-crop; increase the tile size slightly to compensate
Diffstat (limited to 'view')
-rw-r--r-- | view/theme/redbasic/css/style.css | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 33536dee4..5728d7948 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -1728,32 +1728,33 @@ dl.bb-dl > dd > li { .cloud-container { float: left; - width: 80px; - height: 80px; + width: 100px; + height: 110px; margin: 5px; } .cloud-icon-container { - width: 48px; - height: 48px; + width: 64px; + height: 64px; border: 1px solid #eee; border-radius: $radius; } .cloud-icon i { - font-size: 32px; + font-size: 42px; color: #888; margin-top: 8px; + margin-left: 6px; } .cloud-icon img { - width: 48px; - height: 48px; + max-width: 64px; + max-height: 64px; border-radius: $radius; } .cloud-title { - width: 78px; + width: 98px; height: 36px; overflow: hidden; } |