@import "../common.css";

:root {
    --base-width: 68px;
}

body {
    background: url(./bg.jpg) no-repeat center;
    background-size: cover;
}

h2 {
    font-size: 14px;
    margin: 0;
    padding: 0;
}

header {
    height: 70px;
    width: 64px;
    position: fixed;
    left: 16px;
    top: 16px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
    background: rgba(65, 105, 225, 0.9);
    padding-top: 11px;
}

.roboto {
    display: flex!important;
    flex-direction: column!important;
    align-items: center!important;
    justify-content: center;
    margin: 0 12px;
}

.roboto > .icon {
    background-image: url(./hedgehog_light.svg)!important;
    width: 32px!important;
    height: 32px!important;
    background-size: 32px;
}

.roboto > .title {
    font-size: .5em;
    font-weight: bold;
    color: #fff;
}

.workspace {
    width: 100%;
    height: 100%;
    flex: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 36px 0 36px 740px;
    box-sizing: border-box;
    margin-top: -10px;
}

footer {
    width: calc(100%);
    max-width: calc(100%);
    height: 24px;
    position: fixed;
    left: 0;
    bottom: 0;
    background: rgba(34, 34, 34, 1);
    opacity: .8;
    box-sizing: border-box;
    padding: 0 32px;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: stretch;
    font-size: 11px;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
}

footer .left {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: flex-start;
}

footer .center {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-grow: 2;
    max-width: calc(100% / 1);
}

footer .right {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: flex-end;
}

.block {
    border-radius: 5px;
    padding: 16px;
    display: flex;
    flex: none;
    flex-direction: column;
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.5) 0 0 3px;
    margin: var(--base-margin);
    box-sizing: border-box;
    border: 1px solid transparent;
    transition: opacity .2s;
    overflow: hidden;
    opacity: .8;
}

.block:hover {
    opacity: .95;
}