_pagination.scss (655B)
1 .pagination { 2 border-top: .5px solid $grey-2; 3 font-family: $serif-secondary; 4 padding-top: 2rem; 5 position: relative; 6 text-align: center; 7 8 span { 9 color: $default-shade; 10 font-size: 1.1rem; 11 } 12 13 .top { 14 @include transition(all .3s ease-out); 15 color: $default-color; 16 font-family: $sans-serif; 17 font-size: 1.1rem; 18 opacity: .6; 19 20 &:hover { 21 opacity: 1; 22 } 23 } 24 25 .arrow { 26 @include transition(all .3s ease-out); 27 color: $default-color; 28 position: absolute; 29 30 &:hover, 31 &:focus { 32 opacity: .6; 33 text-decoration: none; 34 } 35 } 36 37 .left { 38 left: 0; 39 } 40 41 .right { 42 right: 0; 43 } 44 }