mirror of
https://github.com/avatao-content/frontend-tutorial-framework
synced 2025-04-03 12:12:39 +00:00
148 lines
3.0 KiB
SCSS
148 lines
3.0 KiB
SCSS
// Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
|
// All Rights Reserved. See LICENSE file for details.
|
|
|
|
@import "../../assets/scss/variables.scss";
|
|
@import "../../assets/scss/mixins/layout.scss";
|
|
|
|
@mixin set-tfw-web($layouts-key) {
|
|
.tfw-web {
|
|
.iframe-container {
|
|
display: flex;
|
|
overflow: hidden;
|
|
@include set-component-size($layouts-key, 'web');
|
|
}
|
|
|
|
.iframe {
|
|
flex-grow: 1;
|
|
border: none;
|
|
margin: 0;
|
|
padding: $small;
|
|
}
|
|
}
|
|
}
|
|
|
|
@mixin set-scrollbar-style() {
|
|
::-webkit-scrollbar-track
|
|
{
|
|
background-color: #F5F5F5;
|
|
}
|
|
|
|
::-webkit-scrollbar
|
|
{
|
|
width: 4px;
|
|
background-color: #F5F5F5;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb
|
|
{
|
|
background-color: gray;
|
|
}
|
|
}
|
|
|
|
.tfw-grid-main-components {
|
|
display: grid;
|
|
width: 100vw;
|
|
height: 100vh;
|
|
justify-content: center;
|
|
align-content: center;
|
|
grid-template-columns: repeat($grid-columns-count, 1fr);
|
|
grid-template-rows: repeat($grid-rows-count, 1fr);
|
|
|
|
.tfw-header,
|
|
.tfw-messages {
|
|
// Check whether the layout contains a web component
|
|
div[class*="web"] & {
|
|
border: 2px solid $tao-gray-100;
|
|
border-top: 0;
|
|
border-left: 0;
|
|
border-bottom: 0;
|
|
}
|
|
}
|
|
|
|
.tfw-header {
|
|
padding: $small;
|
|
background-color: $tao-gray-50;
|
|
}
|
|
|
|
.tfw-messages {
|
|
padding: $space;
|
|
padding-top: $hair;
|
|
background-color: $tao-gray-50;
|
|
overflow-y: scroll;
|
|
max-height: 95vmin;
|
|
|
|
div[class="terminal-ide-web"] & {
|
|
max-height: 55vmin;
|
|
}
|
|
|
|
@include set-scrollbar-style();
|
|
}
|
|
|
|
.tfw-ide {
|
|
background-color: $tao-plum-900;
|
|
@include set-scrollbar-style();
|
|
}
|
|
|
|
.tfw-sidebar {
|
|
background-color: $tao-gray-100;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
padding-top: 5vh;
|
|
align-items: center;
|
|
box-shadow: -15px -5px 19px -11px rgba(0,0,0,0.75);
|
|
z-index: 999;
|
|
}
|
|
|
|
.tfw-terminal {
|
|
overflow-y: hidden;
|
|
background-color: $tao-gray-800;
|
|
@include set-scrollbar-style();
|
|
|
|
|
|
div[class*="web"] & {
|
|
border-top: 1px solid $tao-plum-100;
|
|
}
|
|
}
|
|
}
|
|
|
|
.deploy-blur {
|
|
filter: blur(3px);
|
|
}
|
|
|
|
.terminal-ide-web {
|
|
@include set-tfw-web('terminal-ide-web');
|
|
@include position-grid-items(map_get($layouts, 'terminal-ide-web'),'.tfw-');
|
|
}
|
|
|
|
.terminal-web {
|
|
@include set-tfw-web('terminal-web');
|
|
@include position-grid-items(map_get($layouts,'terminal-web'),'.tfw-');
|
|
}
|
|
|
|
.terminal-ide-vertical {
|
|
@include position-grid-items(map_get($layouts,'terminal-ide-vertical'),'.tfw-');
|
|
}
|
|
|
|
.terminal-ide-horizontal {
|
|
@include position-grid-items(map_get($layouts,'terminal-ide-horizontal'),'.tfw-');
|
|
}
|
|
|
|
.ide-web-vertical {
|
|
@include set-tfw-web('ide-web-vertical');
|
|
@include position-grid-items(map_get($layouts,'ide-web-vertical'),'.tfw-');
|
|
}
|
|
|
|
.terminal-only {
|
|
@include position-grid-items(map_get($layouts,'terminal-only'),'.tfw-');
|
|
}
|
|
|
|
.ide-only {
|
|
@include position-grid-items(map_get($layouts,'ide-only'),'.tfw-');
|
|
}
|
|
|
|
.web-only {
|
|
@include set-tfw-web('web-only');
|
|
@include position-grid-items(map_get($layouts,'web-only'),'.tfw-');
|
|
}
|