X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/592c9401b18118e01de250d44878b9289b138f9c..fd1a9915dd65789cccf27041a1f01cd4077273fc:/src/wolnelektury/static/2022/styles/layout/_pagination.scss diff --git a/src/wolnelektury/static/2022/styles/layout/_pagination.scss b/src/wolnelektury/static/2022/styles/layout/_pagination.scss new file mode 100644 index 000000000..d24367079 --- /dev/null +++ b/src/wolnelektury/static/2022/styles/layout/_pagination.scss @@ -0,0 +1,52 @@ +.l-pagination { + display: flex; + align-content: center; + margin: 40px auto 40px auto; + + ul { + display: flex; + margin: 0; + padding: 0; + align-content: center; + list-style: none; + + li { + margin: 0 5px; + font-weight: $regular; + @include font-size(18px); + line-height: 150%; + text-align: center; + color: #474747; + + &.is-active { + a { + color: #ffffff; + background-color: #083F4D; + border-radius: 50%; + } + } + + a { + text-align: center; + line-height: 35px; + display: block; + width: 35px; + height: 35px; + } + } + } +} + +.l-pagination__arrow { + display: flex; + align-content: center; + @include font-size(10px); + margin: 0 20px; + + .icon { + display: flex; + align-content: center; + line-height: 35px; + } +} +