Template: Arrow button/styles.css

(Samwilson changed the content model of the page Template:Arrow button/styles.css from "wikitext" to "Sanitized CSS")
Tag: content model change
No edit summary
Line 1: Line 1:
.arrowbutton {
.tpl-arrowButton a {
color: #ffffff;
color: #ffffff;
padding: 0.4em;
padding: 0.4em;
Line 5: Line 5:
display: inline-block;
display: inline-block;
border-radius: 3px;
border-radius: 3px;
margin-bottom: 0.5em;
font-size: 115%;
}
}


.arrowbutton::before {
.tpl-arrowButton.tpl-arrowButton-hasDescription a {
padding-top: 0.5em;
padding-bottom: 0.5em;
}
 
.tpl-arrowButton-description {
padding-top: 0.5em;
padding-bottom: 0.5em;
font-size: smaller;
}
 
.tpl-arrowButton::before {
content:"⇒ ";
content:"⇒ ";
font-weight:bold;
font-weight: bold;
}
}


.arrowbutton-red {
.tpl-arrowButton-red {
background:#7e322c;
background: #7e322c;
}
}


.arrowbutton-green {
.tpl-arrowButton-green {
background:#53946b;
background: #53946b;
}
}


.arrowbutton-blue {
.tpl-arrowButton-blue {
background:#4f79a2;
background: #4f79a2;
}
}


.arrowbutton-gold {
.tpl-arrowButton-gold {
background:#E5B921;
background: #E5B921;
}
}


.arrowbutton-red:hover {
.tpl-arrowButton-red:hover {
     background: #EDDEDE !important;
     background: #EDDEDE !important;
     color: #000000 !important;
     color: #000000 !important;
}
}


.arrowbutton-green:hover {
.tpl-arrowButton-green:hover {
     background: #DEEDE6 !important;
     background: #DEEDE6 !important;
     color: #000000 !important;
     color: #000000 !important;
Line 43: Line 56:
}
}


.arrowbutton-gold:hover {
.tpl-arrowButton-gold:hover {
     background: #faefcb !important;
     background: #faefcb !important;
     color: #000000 !important;
     color: #000000 !important;
}
}

Revision as of 01:18, 10 June 2021

.tpl-arrowButton a {
	color: #ffffff;
	padding: 0.4em;
	line-height: 1.5em;
	display: inline-block;
	border-radius: 3px;
	margin-bottom: 0.5em;
	font-size: 115%;
}

.tpl-arrowButton.tpl-arrowButton-hasDescription a {
	padding-top: 0.5em;
	padding-bottom: 0.5em;
}

.tpl-arrowButton-description {
	padding-top: 0.5em;
	padding-bottom: 0.5em;
	font-size: smaller;
}

.tpl-arrowButton::before {
	content:"⇒ ";
	font-weight: bold;
}

.tpl-arrowButton-red {
	background: #7e322c;
}

.tpl-arrowButton-green {
	background: #53946b;
}

.tpl-arrowButton-blue {
	background: #4f79a2;
}

.tpl-arrowButton-gold {
	background: #E5B921;
}

.tpl-arrowButton-red:hover {
    background: #EDDEDE !important;
    color: #000000 !important;
}

.tpl-arrowButton-green:hover {
    background: #DEEDE6 !important;
    color: #000000 !important;
}

.arrowbutton-blue:hover {
    background: #DEE7ED !important;
    color: #000000 !important;
}

.tpl-arrowButton-gold:hover {
    background: #faefcb !important;
    color: #000000 !important;
}
Discuss this page