/*
 * post-format.scss
 * -----------------------------------------------
*/
article {
	&.format-link {
		.post-link {
			margin-bottom: 10px;
			padding: 100px 30px;
			font-size: 1.7rem;
			span {
				display: block;
				font-size: 0.9rem;
			}
			&:before {
				color: rgba(250, 250, 250, 0.7);
				content: "\f0c1";
				font-family: fontawesome;
				font-size: 7rem;
				opacity: 0.20;
				position: absolute;
				bottom: 15px;
				right: 25px;
				transform: rotateX(-180deg);
			}
		}
		.entry-content {
			display: none;
		}
	}
	&.format-quote {
		blockquote {
			background-color: #333;
			margin-bottom: 10px;
			padding: 100px 30px;
			font-size: 18px;
			border: none;
			text-align: center;
			p {
				font-size: 1.5rem;
				color: #fff;
			}
			footer {
				font-size: 0.9rem;
				color: #eee;
			}
			&:before {
				color: rgba(250, 250, 250, 0.7);
				content: "\f10e";
				font-family: fontawesome;
				font-size: 7rem;
				line-height: 1;
				opacity: 0.20;
				position: absolute;
				bottom: 0;
				right: 7px;
				transform: rotate(180deg);
			}
		}
		.entry-content {
			display: none;
		}
	}
}