/* Button.css */
.tpl-button {
display: inline-block;
padding: 4px 10px;
text-align: center;
border-radius: 8px;
font-weight: bold;
cursor: pointer;
line-height:1;
}
/* Choose where to align the button (left, right, center) */
.tpl-button-left{
display: flex;
justify-content: flex-start;
}
.tpl-button-center{
display: flex;
justify-content: center;
}
.tpl-button-right{
display: flex;
justify-content: flex-end;
}
.tpl-button{ /* unstyle link */
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 from Citizen.css */
}
.tpl-button-red,.tpl-button-blue{
color:#fff;
}
.tpl-button-green,.tpl-button-yellow{
color:#333;
}
.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%);
}
@media screen and (max-width:768px){
.tpl-button{
width:75%!important;
}
.tpl-button-left,.tpl-button-center,.tpl-button-right{
display: flex;
justify-content: center;
}
}