/** plugin: External Link Icon and Styling #1.0 code **/
:root {
	--external-link-color: rgb(60, 141, 188);
	--external-link-hover-color: rgb(60, 141, 188);
	--external-link-font: inherit;
	--external-link-size: inherit;
	--external-link-weight: inherit;
	--external-link-decoration: inherit;
}
/* Other themes override link styling with !important so we’re good, but for future reference...
Dark theme:
	--external-link-color: rgb(153, 153, 153);
	--external-link-hover-color: rgb(255, 255, 255);
Blue theme:
	--external-link-color: rgb(156, 215, 247);
	--external-link-hover-color: rgb(212, 239, 247);
Future theme:
	--external-link-color: rgb(21, 119, 120);
	--external-link-hover-color: rgb(66, 255, 255);
*/
.entity-content a[href*="//"]:not([href*="kanka.io"]) {
	color: var(--external-link-color);
	font-family: var(--external-link-font);
	font-size: var(--external-link-size);
	font-weight: var(--external-link-weight);
	text-decoration: var(--external-link-decoration);
}
.entity-content a[href*="//"]:not([href*="kanka.io"]):hover {
	color: var(--external-link-hover-color);
}
.entity-content a[href*="//"]:not([href*="kanka.io"]):after {
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f35d";
	font-size: 9px;
	vertical-align: top;
	margin-left: 2px;
}

/** plugin: No Fluff #1.1.1 code **/
/* Hides the footer that usually has links and such */
footer#footer.main-footer,
footer#footer.main-footer *{
    visibility:hidden;
    height: 0;
    padding: 0;
    margin: 0;
    border: 0;
}

/* Removes "Boosted" text */
strong.text-maroon,
strong.text-maroon ~ p.help-block,
strong.text-maroon ~ br{
    display:none;
    margin: 0;
    height: 0;
}

/* Removes the "this character is dead" help tip below a character's "dead" checkbox */
input[name="is_dead"] ~ p{
    visibility: hidden;
    height: 0;
    margin: 0;}
#form-entry > div.row > div.col-md-6:first-of-type > div.form-group:last-of-type{
    margin-bottom: 0;
}

