/**
* default.css
*
* @author Adam Green <140dev@gmail.com>, Brady Marks
* @license GNU Public License
* @version BETA 0.30
*/


:root {
  --mid-grey: #a0a0a0;
  --almost-white: #ECECEC; /*#F5F8FA*/
  --yellow: #ffff33; /* yellow */
}

.hidden {
 	display: none;
}


.tweet  {
	color: var(--almost-white);
}

.tweet a {
    color: var(--almost-white);
}

.tweet_text a {
    color: var(--yellow);
}


#tweet_column {
    	font:normal normal 14px/1.4 Helvetica,Roboto,"Segoe UI",Calibri,sans-serif;
	padding: 0px;
}

.tweet {
	display: grid;
	grid-template-columns: fit-content(5vw) 7pt auto;
	grid-template-rows: 28pt auto auto;
	padding: 1vw 1.2vw  1vw 1.2vw;
	margin: 3pt 0 3pt 0;
	max-width: 90vw;
}

.tweet:hover {
	background-color: rgba(25,30,35,0.50);
}
*

.tweet_image {
 	grid-area: 1 / 1 / 3 / 1;
	justify-self: right;
	align-self: start;
}

.tweet_image img {
	border-radius: 50%;
	border: none;
	width: 5vw;
	height: 5vw;
	max-width: 48px;
	max-height: 48px;
}

.tweet_screen_name {
	align-self: start;
	grid-area:  1 / 3 / 1 / 3 ;
}

.tweet_screen_name  {
	font-weight: 300;
	line-height: 12pt;
}

.tweet_name  {
	font-weight: 700;
	line-height: 12pt;
}

#tweet_count {
	display: none;
}

.tweet_text {
	grid-area:  2 / 3 / 2 / 3 ;
}

.tweet_text p {
	padding: 0px;
	margin-top: 0px;
	margin-bottom: 0px;
}

.tweet_interacts {
 	grid-area: 3 / 3 / 3 / 3;
	justify-self: end;
	color: var(--mid-grey);
	font-weight: 300;
	font-size: calc(6pt + 0.4vw);;
}

.tweet_interacts a {
    color: var(--mid-grey);
}

/*
tweet a:hover {
  color: var(--yellow);
}
*/


#more_tweets_button {
    width: 180px;
    color: var(--yellow);
    box-sizing: border-box;
    padding: 10px 0;
    text-align: center;
    background-color: rgba(25,30,35,0.50);
    /* border: 1px solid #55acee; */;
    border-radius: 100px;
    outline: 0;
    cursor: pointer;
     margin: auto;
} 

/*
.tweet_right {
	float: right;
	width: 430px;
	overflow: hidden;
	padding-right: 5px;
}
.tweet_screen_name a:hover {
	text-decoration: underline;
}
.tweet_text {
	font-size: 100%;
}
.tweet_text a {
	text-decoration: none;
}
.tweet_text a:hover {
	text-decoration: underline;
}
.tweet_date a {
	font-size: 80%;
	color: #808080;
	margin-top: 2px;
	float: left;
	text-decoration: none;
}
.tweet_date a:hover {
	text-decoration: underline;
}
#new_tweet_count {
	background-color: #cae4ff;
	cursor: pointer;
	width: 97%;
	text-align: center;
	padding: 10px 0 10px 10px;
	margin-bottom: 10px;
	-moz-border-radius: 8px;
        -webkit-border-radius: 8px;
	-khtml-border-radius: 8px;
	border-radius: 8px;
}
*/
