Sha256: e1c16174923290367b0c94b168a8fb9b77c88efbe1295e3328647f5543c1eb03
Contents?: true
Size: 1.32 KB
Versions: 2
Compression:
Stored size: 1.32 KB
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-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; } /** * Search */ .search-input { padding-bottom: $spacing-unit; color: $grey-color; display: flex; .icon { margin-right: $spacing-unit / 4; } input { border: 1px solid $grey-color-light; padding: 0.1rem 0.3rem; font-size: $base-font-size; color: $grey-color; flex: 1; } } .search-box ul { list-style: none; margin: 0; padding: 0; li:first-child { border-top: 1px solid $grey-color-light; padding-top: $spacing-unit; } a { margin-left: $spacing-unit / 4; } }
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
writers-zone-0.1.4 | _sass/writers-zone/_plugins.scss |
writers-zone-0.1.3 | _sass/writers-zone/_plugins.scss |