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

github.com/EmielH/stip-hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'assets/scss/stip/_layout.scss')
-rw-r--r--assets/scss/stip/_layout.scss33
1 files changed, 33 insertions, 0 deletions
diff --git a/assets/scss/stip/_layout.scss b/assets/scss/stip/_layout.scss
new file mode 100644
index 0000000..ab360bf
--- /dev/null
+++ b/assets/scss/stip/_layout.scss
@@ -0,0 +1,33 @@
+main {
+ display: flex;
+ flex-direction: row;
+
+ @media screen and (max-width: $break-large) {
+ flex-direction: column;
+ }
+}
+
+.content {
+ margin-left: 1rem;
+ max-width: 50vw;
+
+ @media screen and (max-width: $break-large) {
+ margin-left: 0;
+ max-width: 100vw;
+ }
+
+ .links {
+ margin-top: 2.5rem;
+ font-size: 1.5rem;
+
+ a {
+ margin-right: 0.5rem;
+ text-decoration: none;
+ }
+ }
+}
+
+.footer {
+ margin-top: 3rem;
+ font-size: 0.75rem;
+}