﻿::-webkit-scrollbar {
    display: none;
}

html, body {
    margin: 0;
    padding: 0;
    background-color: #030303;
    font-family: Questrial;
    color: white;
}
body {
    display: flex;
}

/* elements & base classes */
div {
    
}
p {
    margin: 0;
    padding: 0;
    margin-bottom: 10px;
}
h2 {
    font-size: 15px;
}
div.inner:hover {
    background-color: #070707;
}

.inner {
    padding: 10px;
}

/* main blocks */
.center {
    width: 600px;
    height: 100%;
    border-left: 1px solid rgb(46, 64, 82);
    border-right: 1px solid rgb(46, 64, 82);
    margin: auto;
    margin-top: 0;
    margin-bottom: 0;
}
.header {
    height: 70px;
    text-align: center;
    width: 100%;
    border-bottom: 1px solid rgb(46, 64, 82);
}
.header img {
    width: 70px;
}
.left, .right {
    width: calc((100% - 600px) / 2);
    height: 100%;
}
.content {
    height: calc(100% - 70px);
    overflow-x: hidden;
    overflow-y: auto;
}
.content .post {
    border-bottom: 1px solid rgb(46, 64, 82);
    display: flex;
    cursor: pointer;
}
.content .post .avatar {
    width: 40px;
}
.content .post .avatar img {
    width: 40px;
    border-radius: 50%;
}
.content .post .post-content {
    width: calc(100% - 60px);
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 10px;
}

.content .post .post-content .media img {
    width: 100%;
    border-radius: 4px;
}

@media only screen and (max-width: 768px) {
    .center {
        width: 100%;
    }
    .left, .right {
        display: none;
    }    
}