// main: ../main.scss
// post

.post {
	margin-bottom: 100px;
  display: none;
}
.blog .post,
.archive .post,
.category .post {
	padding-bottom: 50px;
	margin-bottom: 50px;
	border-bottom: 1px solid #999;
	display: none;
}
.post-title {
	padding: 20px 0;
	border-top: 1px solid $color-black;
	border-bottom: 1px solid $color-black;
	line-height: 1.5;
}
.entry-header {
	margin-bottom: 30px;
}
.entry-footer {
	border-top: 1px solid $color-black;
	border-bottom: 1px solid $color-black;
	text-align: right;
	padding: 20px 0;margin: 30px 0;
}
@include max-screen($breakpoints-sm-max) {
	.post-title,
 	.archive-title {
	 font-size: 15px;
	 font-size: 1.5rem;
 }
}


// tag

.tagcloud {
	a {
		padding: 5px 10px;
		border: 1px solid #ccc;
		font-size: 12px !important;
		font-size: 1.2rem !important;
		text-decoration: none;
		white-space: nowrap;
		&:hover {
			background-color: $color-pink;
			border: 1px solid #ccc;
			color: $color-white;
			span {
				background-color: $color-white;
				color: $color-pink;
			}
		}
	}
}
.tag-area {
	a {
		padding: 4px 10px 2px 10px;
		border-radius: 5px;
		background: $color-pink;
		text-decoration: none;
		white-space: nowrap;
		font-size: 13px;
		font-size: 1.3rem;
		&:hover {
			background: #ccc;
			color: $color-white;
		}
	}
}


// category

.category-area {
	a {
		padding: 4px 10px 2px 10px;
		border-radius: 5px;
		background: #e6e6e6;
		text-decoration: none;
		white-space: nowrap;
		font-size: 13px;
		font-size: 1.3rem;
		&:hover {
			background: $color-pink;
			color: $color-white;
		}
	}
}
