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

github.com/zzossig/hugo-theme-zzo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/assets
diff options
context:
space:
mode:
authorzzossig <zzossig@gmail.com>2020-02-13 18:31:37 +0300
committerzzossig <zzossig@gmail.com>2020-02-13 18:31:37 +0300
commit2e87f32d6e110c348ae3b7216b7f448c9635725c (patch)
treec2905168d481c3f8164680f8c5ba1e3066cf9ecb /assets
parent510e9d8f168117072e92596afc6b8f3f63aa7a70 (diff)
better support header, talks disable link, external link support
Diffstat (limited to 'assets')
-rw-r--r--assets/sass/base/_helpers.scss10
-rw-r--r--assets/sass/pages/_archive.scss13
-rw-r--r--assets/sass/pages/_gallery.scss7
-rw-r--r--assets/sass/pages/_terms.scss4
4 files changed, 27 insertions, 7 deletions
diff --git a/assets/sass/base/_helpers.scss b/assets/sass/base/_helpers.scss
index e0b3ff6..5fd6f69 100644
--- a/assets/sass/base/_helpers.scss
+++ b/assets/sass/base/_helpers.scss
@@ -27,4 +27,14 @@
@include align-items(center);
@include justify-content(center);
@include flex-direction(column);
+}
+
+.px {
+ padding-left: 1rem;
+ padding-right: 1rem;
+}
+
+.py {
+ padding-top: 1rem;
+ padding-bottom: 1rem;
} \ No newline at end of file
diff --git a/assets/sass/pages/_archive.scss b/assets/sass/pages/_archive.scss
index 7611916..2d8b0ea 100644
--- a/assets/sass/pages/_archive.scss
+++ b/assets/sass/pages/_archive.scss
@@ -234,4 +234,17 @@
}
}
}
+
+ &__subtitle {
+ text-align: center;
+ font-weight: bold;
+ font-family: $title-font;
+
+ @include themify($themes) {
+ color: themed('terms-title-color');
+ }
+ @media only screen and (max-width:600px) {
+ margin-bottom: 1rem;
+ }
+ }
} \ No newline at end of file
diff --git a/assets/sass/pages/_gallery.scss b/assets/sass/pages/_gallery.scss
index 6406ef8..8a077fb 100644
--- a/assets/sass/pages/_gallery.scss
+++ b/assets/sass/pages/_gallery.scss
@@ -61,13 +61,6 @@
img {
border-radius: 0.25rem;
}
-
- &__contents {
- padding: 1rem;
- width: 65%;
- font-size: 1rem;
- text-align: center;
- }
.grid-item {
position: relative;
diff --git a/assets/sass/pages/_terms.scss b/assets/sass/pages/_terms.scss
index dd7a688..830d77b 100644
--- a/assets/sass/pages/_terms.scss
+++ b/assets/sass/pages/_terms.scss
@@ -17,6 +17,10 @@
}
}
+ &__content {
+ width: 100%;
+ }
+
&__list {
@include flexbox();
@include align-items(center);