/*
 * https://codepo8.github.io/css-fork-on-github-ribbon/
 */

#forkongithub {
	position: fixed;
	display: block;
	top: 0;
	left: 0;
	width: 200px;
	overflow: hidden;
	height: 200px;
	z-index: 9999;
}

#forkongithub a {
	background: #1c1d1f;
	color: #fed535;
	width: 200px;
	text-decoration: none;
	font-family: arial, sans-serif;
	text-align: center;
	font-weight: bold;
	padding: 5px 40px;
	font-size: 1rem;
	line-height: 2rem;
	transition: 0.5s;
	position: absolute;
	top: 60px;
	left: -60px;
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
}

#forkongithub a:hover {
	background: #fed535;
	color: #1c1d1f;
}

#forkongithub a::before,
#forkongithub a::after {
	content: "";
	width: 100%;
	display: block;
	position: absolute;
	top: 1px;
	left: 0;
	height: 1px;
	background: #fed535;
}

#forkongithub a::after {
	bottom: 1px;
	top: auto;
}
