aboutsummaryrefslogtreecommitdiff
path: root/_scss/components/_core.scss
diff options
context:
space:
mode:
authorValentin Popov <info@valentineus.link>2020-01-23 19:26:23 +0300
committerGitHub <noreply@github.com>2020-01-23 19:26:23 +0300
commitd05dfb5fbc9603491643a41a47ff9463bf2fda4e (patch)
tree5be50a926a746832df84e7a4abd04eb967f0bb79 /_scss/components/_core.scss
parentd48911089650991034664eac3d2dc2cb2527fcaa (diff)
parent11c402a2938935111fc6c82f53b720eb71e355c7 (diff)
downloadpopov.link-d05dfb5fbc9603491643a41a47ff9463bf2fda4e.tar.xz
popov.link-d05dfb5fbc9603491643a41a47ff9463bf2fda4e.zip
Merge pull request #2 from valentineus/monopage
Monopage
Diffstat (limited to '_scss/components/_core.scss')
-rw-r--r--_scss/components/_core.scss38
1 files changed, 1 insertions, 37 deletions
diff --git a/_scss/components/_core.scss b/_scss/components/_core.scss
index f3a28f1..46740ac 100644
--- a/_scss/components/_core.scss
+++ b/_scss/components/_core.scss
@@ -4,47 +4,11 @@
*::after,
*::before {
@include text-size-adjust(100%);
+
box-sizing: border-box;
}
html {
background-color: $color-html;
- height: 100%;
overflow-y: scroll;
}
-
-body {
- display: flex;
- flex-direction: row;
- min-height: 100%;
-}
-
-.container {
- flex: 75%;
- padding-right: 16px;
-}
-
-.sidebar {
- border-left: 1px solid $color-bg-alt;
- flex: 25%;
- height: 100%;
- padding-left: 16px;
-}
-
-@media (max-width: 684px) {
- body {
- flex-direction: column;
- }
-
- .container {
- flex: 100%;
- padding-right: 0;
- }
-
- .sidebar {
- border: 0;
- display: none;
- flex: 100%;
- padding-left: 0;
- }
-}