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

github.com/danielkvist/hugo-piercer-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/assets
diff options
context:
space:
mode:
authordanielkvist <d94.zaragoza@gmail.com>2019-03-26 16:41:37 +0300
committerdanielkvist <d94.zaragoza@gmail.com>2019-03-26 19:37:01 +0300
commit00001b92a3b0f3a86d145ddeabcea815ba0fe1a7 (patch)
tree3eb8b9d982c22b574c2f4d0e5f1ea4b245eb8935 /assets
parenta94ed843c1eaff36bf535f0e6a90ca1f31cef03d (diff)
add basic CSS styles for sections
Diffstat (limited to 'assets')
-rw-r--r--assets/css/style.css23
1 files changed, 23 insertions, 0 deletions
diff --git a/assets/css/style.css b/assets/css/style.css
index b1d51eb..687a8c7 100644
--- a/assets/css/style.css
+++ b/assets/css/style.css
@@ -41,6 +41,29 @@
color: var(--green);
}
+/* SECTIONS */
+.section {
+ align-items: center;
+ display: flex;
+ flex-direction: column;
+ min-height: 90vh;
+ text-align: center;
+ justify-content: center;
+}
+
+.section > h1 {
+ font-size: var(--h3);
+}
+
+.section > *:first-child {
+ margin-bottom: 1.45rem;
+}
+
+.section > p {
+ margin-left: 0.95rem;
+ margin-right: 0.95rem;
+}
+
/* CONTACT */
.contact {
align-items: center;