Template:Button/style.css: Difference between revisions

Template page
No edit summary
No edit summary
Line 24: Line 24:
}
}


.tpl-button-red > p > a{
.tpl-button-red > p > a,.tpl-button-blue > p > a,.tpl-button-green > p > a,.tpl-button-yellow > p > a{
color:#fff;
color:#fff;
}
}


.tpl-button-blue {
.tpl-button-blue {
     background-color: #0000ff;
     background-color: #143fbf;
}
}


.tpl-button-green {
.tpl-button-green {
     background-color: #00ff00;
     background-color: #52CF44;
}
}


.tpl-button-yellow {
.tpl-button-yellow {
     background-color: #ffff00;
     background-color: #FFDA1F;
}
}


.tpl-button:hover{ /*colors other than red, which we use for Citizen, are automatically recalculated on a filter value*/
.tpl-button:hover{ /*colors other than red, which we use for Citizen, are automatically recalculated on a filter value*/
filter:brightness(110%) saturate(80%);
filter:brightness(110%) saturate(100%);
}
}

Revision as of 12:38, 21 September 2023

/* Button.css */
.tpl-button {
    display: inline-block;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
 
}

.tpl-button > p > a{
	text-decoration:none;
}

/*available colors*/
.tpl-button-red {
    background-color:#b50014; /* taken from Citizen.css : --color-red-3*/
}

.tpl-button-red:hover{
	background-color:#c33242; /* --color-red-light-3 */
}

.tpl-button-red > p > a,.tpl-button-blue > p > a,.tpl-button-green > p > a,.tpl-button-yellow > p > a{
	color:#fff;
}

.tpl-button-blue {
    background-color: #143fbf;
}

.tpl-button-green {
    background-color: #52CF44;
}

.tpl-button-yellow {
    background-color: #FFDA1F;
}

.tpl-button:hover{ /*colors other than red, which we use for Citizen, are automatically recalculated on a filter value*/
	filter:brightness(110%) saturate(100%);
}