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

github.com/EmielH/hallo-hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'assets/scss/hallo/_layout.scss')
-rw-r--r--assets/scss/hallo/_layout.scss22
1 files changed, 17 insertions, 5 deletions
diff --git a/assets/scss/hallo/_layout.scss b/assets/scss/hallo/_layout.scss
index 898974a..9e07d5b 100644
--- a/assets/scss/hallo/_layout.scss
+++ b/assets/scss/hallo/_layout.scss
@@ -3,8 +3,14 @@
}
main {
- display: flex;
- margin-top: 20vh;
+ .block {
+ display: flex;
+ }
+
+ .block.introduction {
+ margin-top: 20vh;
+ min-height: calc(100vh - 20vh);
+ }
.column.left {
text-align: end;
@@ -20,7 +26,7 @@ main {
margin-left: -4px; /* Correction for margin of leftmost character. */
margin-top: 0;
}
-
+
.links {
margin-top: 2.5rem;
font-size: 1.5rem;
@@ -30,11 +36,17 @@ main {
text-decoration: none;
}
}
+
}
@media screen and (max-width: $break-large) {
- flex-direction: column;
- margin-top: 0;
+ .block {
+ flex-direction: column;
+ }
+
+ .block.introduction {
+ margin-top: 0;
+ }
.column.left {
text-align: center;