aboutsummaryrefslogtreecommitdiffstats
path: root/src/scss/custom/_links.scss
diff options
context:
space:
mode:
Diffstat (limited to 'src/scss/custom/_links.scss')
-rw-r--r--src/scss/custom/_links.scss37
1 files changed, 37 insertions, 0 deletions
diff --git a/src/scss/custom/_links.scss b/src/scss/custom/_links.scss
new file mode 100644
index 0000000..383f1fe
--- /dev/null
+++ b/src/scss/custom/_links.scss
@@ -0,0 +1,37 @@
+a {
+ color: #0099e5;
+ &:hover {
+ text-decoration: none;
+ }
+ &.navbar-item {
+ &.is-tab {
+ &.is-active {
+ border-bottom-color: #dd7325;
+ border-width: 2px;
+ color: whitesmoke;
+ }
+ &:hover {
+ border-bottom-color: #dd7325;
+ border-width: 2px;
+ color: #dd7325;
+ }
+ }
+ &:hover {
+ color: #dd7325;
+ background-color: transparent;
+ }
+ }
+ &.pagination-previous.disabled, &.pagination-next.disabled {
+ background: #0c0f0f;
+ color: white;
+ cursor: not-allowed;
+ border-color: #dbdbdb;
+ box-shadow: none;
+ color: #7a7a7a;
+ opacity: .5;
+ }
+}
+
+.pagination-list {
+ margin-bottom: 1.5rem;
+}