diff --git a/assets/css/style.scss b/assets/css/style.scss index 18726b6..1846a1c 100644 --- a/assets/css/style.scss +++ b/assets/css/style.scss @@ -50,10 +50,10 @@ aside { } #content { - padding-top: 0; padding-bottom: 0; width: 50vw; + height: 100%; } #nav { @@ -148,11 +148,21 @@ article { padding-bottom: 0; } +#chat { + padding-top: 0; + padding-bottom: 0; +} + #our-friends-mobile { display: none; visibility: hidden; } +#chat-mobile { + display: none; + visibility: hidden; +} + @media only screen and (max-width: 768px) { #wrapper { flex-direction: column; @@ -216,10 +226,15 @@ article { #social-mobile { display: block; visibility: visible; - order: 5; + order: 6; // margin-bottom: 7px; } + #chat { + display: none; + visibility: hidden; + } + #our-friends { display: none; visibility: hidden; @@ -234,6 +249,15 @@ article { padding-bottom: 0; } + #chat-mobile { + display: block; + visibility: visible; + width: 100%; + order: 5; + padding-top: 0; + padding-bottom: 0; + } + #right-side { display: flex; align-items: center; diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html index c35ba36..c77984a 100644 --- a/layouts/_default/baseof.html +++ b/layouts/_default/baseof.html @@ -24,10 +24,16 @@
{{- partial "our-friends.html" . -}}
+
+ {{- partial "chat.html" . -}} +
{{- partial "our-friends.html" . -}}
+
+ {{- partial "chat.html" . -}} +
{{- partial "social.html" . -}}
diff --git a/layouts/partials/chat.html b/layouts/partials/chat.html new file mode 100644 index 0000000..863c5db --- /dev/null +++ b/layouts/partials/chat.html @@ -0,0 +1,2 @@ +

Чат

+ \ No newline at end of file