Sha256: 867007411e3b8b3678f1794e8032e862bc3fd2206cb8211d17b180cf94297839

Contents?: true

Size: 1.13 KB

Versions: 11

Compression:

Stored size: 1.13 KB

Contents

/* Pagination */

	ul.pagination {
		cursor: default;
		list-style: none;
		padding-left: 0;

		li {
			display: inline-block;
			padding-left: 0;
			vertical-align: middle;

			> .page {
				@include vendor('transition', (
					'background-color #{_duration(transition)} ease-in-out',
					'color #{_duration(transition)} ease-in-out'
				));
				border-bottom: 0;
				border-radius: _size(border-radius);
				display: inline-block;
				font-size: 0.8em;
				font-weight: _font(weight-bold);
				height: 2em;
				line-height: 2em;
				margin: 0 0.125em;
				min-width: 2em;
				padding: 0 0.5em;
				text-align: center;

				&.active {
					background-color: _palette(accent);
					color: _palette(bg) !important;

					&:hover {
						background-color: lighten(_palette(accent), 3);
					}

					&:active {
						background-color: darken(_palette(accent), 3);
					}
				}
			}

			&:first-child {
				padding-right: 0.75em;
			}

			&:last-child {
				padding-left: 0.75em;
			}
		}

		@include breakpoint('<=xsmall') {
			li {
				&:nth-child(n+2):nth-last-child(n+2) {
					display: none;
				}

				&:first-child {
					padding-right: 0;
				}
			}
		}
	}

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
jekyll-theme-editorial-1.0.11 _sass/components/_pagination.scss
jekyll-theme-editorial-1.0.10 _sass/components/_pagination.scss
jekyll-theme-editorial-1.0.9 _sass/components/_pagination.scss
jekyll-theme-editorial-1.0.8 _sass/components/_pagination.scss
jekyll-theme-editorial-1.0.7 _sass/components/_pagination.scss
jekyll-theme-editorial-1.0.6 _sass/components/_pagination.scss
jekyll-theme-editorial-1.0.5 _sass/components/_pagination.scss
jekyll-theme-editorial-1.0.4 _sass/components/_pagination.scss
jekyll-theme-editorial-1.0.3 _sass/components/_pagination.scss
jekyll-theme-editorial-1.0.2 _sass/components/_pagination.scss
jekyll-theme-editorial-1.0.1 _sass/components/_pagination.scss