diff options
author | CruiseDevice | 2018-11-02 19:34:13 +0530 |
---|---|---|
committer | CruiseDevice | 2018-11-02 20:58:08 +0530 |
commit | f3727c726a2c385ce7e22a72064aa12bc4216af7 (patch) | |
tree | d2efa6d9b7521341ca097aea62e55bef137072a9 /sbhs/static/css/base.css | |
parent | af3225842b4b994ffd00ec7a4b479d7e07ac6012 (diff) | |
download | sbhs_server-f3727c726a2c385ce7e22a72064aa12bc4216af7.tar.gz sbhs_server-f3727c726a2c385ce7e22a72064aa12bc4216af7.tar.bz2 sbhs_server-f3727c726a2c385ce7e22a72064aa12bc4216af7.zip |
Fix show all boards images view in moderator
Diffstat (limited to 'sbhs/static/css/base.css')
-rw-r--r-- | sbhs/static/css/base.css | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/sbhs/static/css/base.css b/sbhs/static/css/base.css index 6e356f7..4a5174c 100644 --- a/sbhs/static/css/base.css +++ b/sbhs/static/css/base.css @@ -33,3 +33,33 @@ html, body{ padding: 10px; padding-bottom: 60px: } +.gallery{ + -webkit-column-count: 3; + -moz-column-count: 3; + column-count: 3; + -webkit-column-width: 33%; + -moz-column-width: 33%; + column-width: 33%; } +.gallery .pics { + -webkit-transition: all 350ms ease; + transition: all 350ms ease; } +.gallery .animation { + -webkit-transform: scale(1); + -ms-transform: scale(1); + transform: scale(1); } +@media (max-width: 450px) { + .gallery { + -webkit-column-count: 1; + -moz-column-count: 1; + column-count: 1; + -webkit-column-width: 100%; + -moz-column-width: 100%; + column-width: 100%; + } +} +@media (max-width: 400px) { + .btn.filter { + padding-left: 1.1rem; + padding-right: 1.1rem; + } +}
\ No newline at end of file |