Sha256: ed3ff72c8b0887879cb14b0221b16cacc37f261f782e693acdcf2125b68f973a
Contents?: true
Size: 966 Bytes
Versions: 3
Compression:
Stored size: 966 Bytes
Contents
/** * Pagination */ .pagination-pages, .pagination-posts { padding-top: $spacing-unit; border-top: 1px solid $grey-color-light; // compatibility with all browsers (desktop/mobile) less // - IE < 10 // - Opera (desktop/mobile) < 12.1 // more datails: http://caniuse.com/#feat=flexbox display: -webkit-box; display: -moz-box; display: -ms-flexbox; display: -webkit-flex; display: flex; -webkit-box-pack: justify; -moz-box-pack: justify; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; } .pagination-posts { -webkit-box-align: center; -moz-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; } .pagination-pages { margin-top: $spacing-unit / 2 ; } .previous-posts, .next-posts { -webkit-box-flex: 0; -moz-box-flex: 0; -webkit-flex: 0 1 48%; -ms-flex: 0 1 48%; flex: 0 1 48%; } .next-posts { text-align: right; }
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
writers-zone-0.2.1 | _sass/layout/_pagination.scss |
writers-zone-0.2.0 | _sass/layout/_pagination.scss |
writers-zone-0.1.5 | _sass/layout/_pagination.scss |