summaryrefslogtreecommitdiff
path: root/_sass
diff options
context:
space:
mode:
authorjeffreytse <jeffreytse.mail@gmail.com>2020-07-12 16:30:26 +0800
committerjeffreytse <jeffreytse.mail@gmail.com>2020-07-12 17:38:34 +0800
commit16922b8ac6cb877d72294cddcb0c44d8864785b1 (patch)
tree38da9a8b0c4f9af79c451680357e37e8439743a0 /_sass
parent745982c5574613a1951c2e567ec3b66f8d40cbac (diff)
chore: change some test posts
Diffstat (limited to '_sass')
-rw-r--r--_sass/yat.scss3
-rw-r--r--_sass/yat/_layout.scss38
2 files changed, 39 insertions, 2 deletions
diff --git a/_sass/yat.scss b/_sass/yat.scss
index 8d1730f..25a193a 100644
--- a/_sass/yat.scss
+++ b/_sass/yat.scss
@@ -2,8 +2,7 @@
// Define defaults for each variable.
-$base-font-family: 'Noto Sans Light', 'AppleSDGothicNeo-Regular', 'Malgun
-Gothic', "Apple Color Emoji", Helvetica, Arial, sans-serif, Oswald, dotum, sans-serif, !default;
+$base-font-family: "Noto Sans Light", AppleSDGothicNeo-Regular, "Malgun Gothic", "Apple Color Emoji", Helvetica, Arial, Oswald, sans-serif, !default;
$base-font-size: 14px !default;
$base-font-weight: 400 !default;
$small-font-size: $base-font-size * 0.875 !default;
diff --git a/_sass/yat/_layout.scss b/_sass/yat/_layout.scss
index c0e7064..84da596 100644
--- a/_sass/yat/_layout.scss
+++ b/_sass/yat/_layout.scss
@@ -321,6 +321,44 @@ html {
margin-left: 8px;
}
}
+
+ .paginator {
+ text-align: center;
+
+ .previous:before {
+ content: ' ';
+ border: solid #787878;
+ border-width: 0 2px 2px 0;
+ display: inline-block;
+ padding: 4px;
+ margin-right: 8px;
+ transform: rotate(135deg);
+ -webkit-transform: rotate(135deg);
+ }
+
+ .next:after {
+ content: ' ';
+ border: solid #787878;
+ border-width: 0 2px 2px 0;
+ display: inline-block;
+ padding: 4px;
+ margin-left: 8px;
+ transform: rotate(-45deg);
+ -webkit-transform: rotate(-45deg);
+ }
+
+ .previous span, .next span {
+ color: #b3b3b3;
+ }
+
+ a:hover {
+ color: #000;
+ }
+
+ .indicator {
+ padding: 0 15px;
+ }
+ }
}