diff options
| author | turon <spider@turon> | 2015-09-27 23:17:36 -0400 |
|---|---|---|
| committer | turon <spider@turon> | 2015-09-27 23:17:36 -0400 |
| commit | d2d718b9874da0a45abd1d8d3d9f2b83d43c5fb5 (patch) | |
| tree | 65a6946247c27bc0edda3adceb5670edaec4e6dd /css | |
| parent | 937b4d3c3986addec753f9e5c63c0276bc4fe4a6 (diff) | |
| parent | 9b4fe331dd705ab55e4ca5722d342829337915ef (diff) | |
| download | themes-d2d718b9874da0a45abd1d8d3d9f2b83d43c5fb5.tar.gz themes-d2d718b9874da0a45abd1d8d3d9f2b83d43c5fb5.tar.bz2 themes-d2d718b9874da0a45abd1d8d3d9f2b83d43c5fb5.zip | |
base.css tweaks
Diffstat (limited to 'css')
| -rw-r--r-- | css/base.css | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/css/base.css b/css/base.css index dba664e..cc0cbee 100644 --- a/css/base.css +++ b/css/base.css @@ -31,6 +31,9 @@ html[dir='rtl'] .alignright {text-align:left} .inline {display:inline;} .inline-block {display:inline-block;} +.table-cell {display:table-cell;} + +.strong {font-weight:bold} .floatright {float:right} html[dir='rtl'] .floatright {float:left} @@ -190,6 +193,38 @@ ul.data li.item:last-child { border-bottom:none; } margin-left: 20px; } +.bit-columns { +-webkit-column-count: 3; +-webkit-column-gap: 10px; +-webkit-column-fill: auto; +-moz-column-count: 3; +-moz-column-gap: 10px; +-moz-column-fill: auto; +column-count: 3; +column-gap: 15px; +column-fill: auto; +} + +.bit-column-cell { +display: inline-block; +-webkit-column-break-inside: avoid; +-moz-column-break-inside: avoid; +column-break-inside: avoid; +width: 100%; +-webkit-transition: all .2s ease; +-moz-transition: all .2s ease; +-o-transition: all .2s ease; +transition: all .2s ease; +} + +@media (min-width: 960px) { +#columns { -webkit-column-count: 4; -moz-column-count: 4; column-count: 4; } +} + +@media (min-width: 1100px) { +#columns { -webkit-column-count: 5; -moz-column-count: 5; column-count: 5; } +} + /* LEGACY essential and basic css settings *-/ body {background:#fff; margin:0; padding:0;} table {border-collapse:collapse; border-spacing:0; padding:0; margin:0; width:100%;} |
