Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/EmielH/tale-hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'assets/scss/tale/_pagination.scss')
-rw-r--r--assets/scss/tale/_pagination.scss44
1 files changed, 44 insertions, 0 deletions
diff --git a/assets/scss/tale/_pagination.scss b/assets/scss/tale/_pagination.scss
new file mode 100644
index 0000000..3700e15
--- /dev/null
+++ b/assets/scss/tale/_pagination.scss
@@ -0,0 +1,44 @@
+.pagination {
+ border-top: .5px solid $grey-2;
+ font-family: $serif-secondary;
+ padding-top: 2rem;
+ position: relative;
+ text-align: center;
+
+ span {
+ color: $default-shade;
+ font-size: 1.1rem;
+ }
+
+ .top {
+ @include transition(all .3s ease-out);
+ color: $default-color;
+ font-family: $sans-serif;
+ font-size: 1.1rem;
+ opacity: .6;
+
+ &:hover {
+ opacity: 1;
+ }
+ }
+
+ .arrow {
+ @include transition(all .3s ease-out);
+ color: $default-color;
+ position: absolute;
+
+ &:hover,
+ &:focus {
+ opacity: .6;
+ text-decoration: none;
+ }
+ }
+
+ .left {
+ left: 0;
+ }
+
+ .right {
+ right: 0;
+ }
+}