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

github.com/uPagge/uBlogger.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/assets
diff options
context:
space:
mode:
authorDillon <dillonzq@outlook.com>2020-03-16 20:03:08 +0300
committerGitHub <noreply@github.com>2020-03-16 20:03:08 +0300
commit0ca8a4c85ba198b0614f360fe38145371b78fd80 (patch)
tree033c587a2fc1132710d1232101ea39c58a2c50b7 /assets
parent41c2d3a38e77b5a0db8ff9d8d3f49730355f554c (diff)
feat(home): add disclaimer under social links on home page (#175)
Diffstat (limited to 'assets')
-rw-r--r--assets/css/_page/_home.scss21
1 files changed, 17 insertions, 4 deletions
diff --git a/assets/css/_page/_home.scss b/assets/css/_page/_home.scss
index f5ef1f9..ff0d475 100644
--- a/assets/css/_page/_home.scss
+++ b/assets/css/_page/_home.scss
@@ -10,7 +10,7 @@
-ms-transform: translateY(if($posts, 0, 16vh));
-o-transform: translateY(if($posts, 0, 16vh));
transform: translateY(if($posts, 0, 16vh));
- padding: if($posts, 2rem, 0) 0;
+ padding: if($posts, 2rem, 0) 0 .5rem;
text-align: center;
.home-avatar {
@@ -43,15 +43,15 @@
}
}
- .home-description {
+ .home-subtitle {
font-size: 1rem;
font-weight: normal;
margin: 0;
padding: .4rem;
}
- .home-social-links {
- padding: .6rem 0;
+ .social-links {
+ padding: .4rem 0;
a, i {
font-size: 1.6rem;
@@ -63,6 +63,19 @@
padding: 0 .25rem;
}
}
+
+ .home-disclaimer {
+ font-size: 1rem;
+ line-height: 1.4rem;
+ font-weight: normal;
+ margin: 0;
+ padding: .4rem;
+ color: $global-font-secondary-color;
+
+ .dark-theme & {
+ color: $global-font-secondary-color-dark;
+ }
+ }
}
}