*
{
	cursor: default;
	text-decoration: none;
}

body
{
	background-color: darkseagreen;
	overflow-x: scroll;
	display: flex;
	height: 500px;
	flex-direction: row;
	flex-wrap: nowrap;
}

#tabs
{
	height: 30px;
}

#controls
{
	position: absolute;
	bottom: 0;
}

#controls *
{
	width: 50px;
	height: 50px;
	border-radius: 25px;
}

.tab-content
{
	position: absolute;
	top: 40px;
}

.timeline
{
	background-color: cornflowerblue;
	border: 10px solid cornflowerblue;
	min-width: 600px;
	height: 60vh;
	float: left;
	overflow-y: scroll;
}

.header
{
	text-align: center;
	background-color: cornflowerblue;
	display: inline-block;
	width: 90%;
	padding-left: 20%;
}

.settings
{
	position: relative;
	float: right;
	right: 20px;
}

.post
{
	margin: 10px;
	padding: 10px;
	height: 17vh;
	position: relative;
	overflow: hidden;
}

.post, .post *
{
	background-color: white;
}

.img
{
	width: fit-content;
	display: inline-block;
	margin-right: 10px;
}

.img > img, .img { height: 50px; }

.postname
{
	position: absolute;
	width: 100%;
	display: inline-block;
}

.postname *
{
	display: inline-block;
	padding: 0.5vh 0.5vw 0.5vh 0;
}

.posttext
{
	top: 40px;
	width: inherit;
	position: absolute;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	left: 70px;
}

.time
{
	position: absolute;
	right: 20%;
}

.interacts
{
	display: inline-block;
	position: absolute;
	bottom: 5%;
	left: 10%;
	width: 100%;
	height: 20%;
}

.interacts-blocks
{
	width: 32%;
	height: 100%;
	display: inline-block;
	position: relative;
	bottom: 10%;
}

.interacts-blocks > p
{
	position: relative;
    bottom: 10%;
    display: inline-block;
}

dialog { width: 45vw; }
dialog #makepost { height: 30vh; }

dialog > div img,
dialog > div video,
dialog > div audio
{
	height: 30vh;
}

dialog .post
{
	height: 100%;
}

dialog .posttext
{
	display: block;
	position: initial;
}

dialog .interacts
{
	bottom: 0%;
    height: 15%;
    position: inherit;
	width: 100%;
	margin-bottom: 2.5vh;
}

dialog .interacts-blocks
{
	position: relative;
    bottom: 0%;
}

dialog .interacts-blocks > p
{
	bottom: 20%;
    margin-left: 3%;
    position: relative;
}

.media-indicator
{
	font-size: 0.9em;
	color: #666;
	background: #f9f9f9;
	padding: 4px 8px;
	border-left: 4px solid #aaa;
	margin-top: 8px;
}


.reply, .boost, .like
{
	text-align: right;
	width: 20%;
	border: none;
	cursor: pointer;
	font-size: 2em;
	margin-left: auto;
}

#newfeed
{
	background-color: cyan;
	bottom: 30px;
	left: 30px;
}

@media screen and (max-width: 800px)
{
	.tab-content
	{
		width: 100%;
	}
	
	.timeline
	{
		width: 100%;
	}
	
	.post
	{
		height: 30%;
	}

	.posttext
	{
		width: 80%;
	}
	
	.interacts-blocks
	{
		position: 
		bottom:
	}
	
	.interacts-blocks > p
	{
		margin-left: 5%;
	}
	
	dialog
	{
		width: 80%;
	}
	
	dialog .interacts-blocks > p
	{
		bottom: 1%;
		margin-left: 15%;
		position: absolute;
	}
}