aboutsummaryrefslogtreecommitdiff
path: root/_scss/components/_core.scss
diff options
context:
space:
mode:
authorValentin Popov <info@valentineus.link>2020-01-23 10:54:12 +0300
committerValentin Popov <info@valentineus.link>2020-01-23 10:54:12 +0300
commit20a83cfb4a9f7841944b62c914250d8938274585 (patch)
treefcbbf1aedb82a345f852d5bab6bdf7b67be7136e /_scss/components/_core.scss
parentd48911089650991034664eac3d2dc2cb2527fcaa (diff)
downloadpopov.link-20a83cfb4a9f7841944b62c914250d8938274585.tar.xz
popov.link-20a83cfb4a9f7841944b62c914250d8938274585.zip
Updated site styles
Signed-off-by: Valentin Popov <info@valentineus.link>
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;
- }
-}