*{
	font-family: /*Helvetica,*/ Verdana, sans-serif;
}
html{
	scroll-behavior: smooth;
}
body{
	margin: 0px;
}
#nav_bar{
	list-style-type: none;
	margin: 0;
	padding: 0;
	position: sticky;
	top:0;
	overflow: hidden;
	z-index: 2;
	background-color: mediumorchid;
}
#nav_bar li{
	padding: 25px 25px;
	display: inline;
	font-family: Monaco, "Lucida Console",monospace;
	text-decoration: none;
}
.nav_bar_tabs{
	float: left;
	display: block;
}
.nav_bar_tabs:hover{
	background-color: darkorchid;
}
#random:hover{
	background-image: linear-gradient(to bottom right, orange, green, purple);
}
#searchtab:hover{
	cursor: pointer;
}
#active{
	background-color: springgreen;
}
.welcome{
	margin: auto;
	padding: 50px 0px;
	text-align: center;
	font-family: Monaco, "Lucida Console",monospace;
}
#settings{
	background-color: darkslateblue;
	color: white;
	width: 250px;
	height: 100%;
	position: fixed;
	padding: 30px;
	left: 0;
}
#boards{
	margin: auto;
	width: 75%;
	border: 3px dashed #8f9997;
  border-radius: 9px;
  outline: 3px groove #8f9997;
  outline-offset: 10px;
}
.boards{
	padding-left: 25px;
	border-style: solid none none;
	border: 1px solid lightgray;
}
.boards p{
	padding-left: 50px;
}
#posts{
	width: 90%;
	margin: auto;
	margin-bottom: 25px;
}
#threads{
	margin: auto;
	width: 75%;
	outline: 2px solid lightgray;
	margin-bottom: 25px;
}
.threads, .posts{
	padding: 50px;
	border-style: solid none;
	border: 1px solid lightgray;
	font-family: sans-serif;
}
p:first-child, .posts p:last-child, .threads div>span{
	color: gray;
}
.threads p:last-child{
	color: silver;
	text-align: right;
}
.posts p:last-child{
	text-align: right;
}
.pagenav{
	list-style-type: none; 
	margin: 10px 200px;
	padding: 0;
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
}
.pagenav li{
	float: left; 
	display: block; 
	text-align: center; 
	padding: 10px; 
	border: 1px solid gray; 
	border-radius: 3px;
}
.posts span, .threads span:last-of-type{
	float: right;
}
button, input[type=submit]{
	background-color: thistle;
	color: dimgray;
	border-radius: 10px;
	padding: 10px;
}
.quick_nav{
	background-color: dimgray;
	color: mediumorchid;
	position: fixed;
	right: 25px;
	padding: 10px;
}
.quick_nav:hover{
	background-color: slategray;
}
#bottom_button{
	bottom: 25px;
}
#top_button{
	bottom: 75px;
}
textarea{
	width: 80%;
	height: 200px;
	resize: none;
	padding: 12px 20px;
	margin: 8px 0;
	box-sizing: border-box;
	border: 2px solid darkorchid;
	border-radius: 5px;
	background-color: lavenderblush;
	width: 100%;
}
form{
	display: none;
	margin: auto;
	width: 75%;
	transition: display 2s;
}
#search_menu{
	width: 25%;
	position: fixed;
	padding: 10px;
	right: 0px;
	border: 1px solid lightgray;
	border-radius: 10px;
	background-image: linear-gradient(to bottom right, whitesmoke, dimgray);
}
a{
	text-decoration: none;
	color: rebeccapurple;
}
input[type=text]{
	padding: 12px 20px;
	margin: 8px 0;
	box-sizing: border-box;
	border: 2px solid darkorchid;
	border-radius: 5px;
	background-color: lavenderblush;
	width: 100%;
}
input[type=text]:focus {
  border-color: mediumorchid;
}
.actions_drop{
	display: inline-block;
	float: right;
	position: relative;
}
.actions_dropdown{
	position: absolute;
	background-color: oldlace;
	min-width: 120px;
	display: none;
	z-index: 1;
}
.actions_dropdown div{
	padding: 12px 15px;
	color: darkgrey;
	display: block;
}
.actions_dropdown div:hover{
	background-color: bisque;
}
.actions{
	font-size: x-large;
	background-color: mintcream;
  color: dimgray;
  border-radius: 60%;
  padding: 12px 24px;
  border-width: 0px;
}
.actions:hover{
	background-color: lightgray;
}
p div{
	float: right;
}
.bshow{
	display: block;
}
.ibshow{
	display: inline-block;
}
.ishow{
	display: inline;
}
.threads li{
	float: left;
	border: solid 1px;
	border-radius: 10%;
	margin: 0px 2px;
  padding: 5px;
  font-size: xx-small;
}
.threads ul{
	margin: 0;
	padding: 0;
	list-style-type: none;
	overflow: hidden;
}
.deleted{
	background-color: brown;
	color: sienna;
}
.pinned{
	background-color: gold;
	color: purple;
}
.featured{
	background-color: chartreuse;
	color: chocolate;
}
.nsfw{
	background-color: ghostwhite;
	color: indianred;
	border-color: indianred;
}
.members-only{
	background-color: #55ADD3;
	color: #7B55D3;
}
/*input[type=checkbox]{

}
.sneak_peek_threads{
	width: 30%;
	display: inline-block;
}
#trending span{
	color: mediumorchid;
	background-color: black;
}
#new span{
	color: black;
	background-color: mediumorchid;
}*/