2024-01-09 16:13:20 +01:00
|
|
|
button,
|
|
|
|
input[type="button"],
|
|
|
|
input[type="reset"],
|
|
|
|
input[type="submit"],
|
|
|
|
.button,
|
|
|
|
.wp-block-button__link {
|
2024-02-20 23:13:06 +01:00
|
|
|
border: 0;
|
2024-01-09 16:13:20 +01:00
|
|
|
border-color: $color__border-button;
|
|
|
|
border-radius: 0;
|
|
|
|
background: $color__background-button;
|
2024-02-20 23:13:06 +01:00
|
|
|
color: $color__white;
|
2024-03-30 14:29:34 +01:00
|
|
|
font-size: $font__size-body * 0.9;
|
2024-04-02 14:04:49 +02:00
|
|
|
//line-height: 1;
|
2024-03-30 14:29:34 +01:00
|
|
|
padding: 0.6em;
|
2024-01-14 20:13:11 +01:00
|
|
|
margin: 0;
|
2024-01-09 16:13:20 +01:00
|
|
|
|
|
|
|
&:hover {
|
|
|
|
border-color: $color__border-button-hover;
|
2024-02-20 23:13:06 +01:00
|
|
|
color: $color__white;
|
|
|
|
}
|
|
|
|
&:visited {
|
|
|
|
color: $color__white;
|
2024-01-09 16:13:20 +01:00
|
|
|
}
|
|
|
|
&:active,
|
|
|
|
&:focus {
|
|
|
|
border-color: $color__border-button-focus;
|
2024-02-20 23:13:06 +01:00
|
|
|
color: $color__white;
|
2024-01-09 16:13:20 +01:00
|
|
|
}
|
|
|
|
}
|
2024-05-16 21:05:29 +02:00
|
|
|
//.category-faq {
|
|
|
|
// .button-more {
|
|
|
|
// &::before {
|
|
|
|
// content: "accedir";
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
//}
|
2024-01-14 20:13:11 +01:00
|
|
|
|
2024-02-28 16:18:23 +01:00
|
|
|
.xarxaprod-search-form {
|
|
|
|
display: flex;
|
|
|
|
margin: 0.5rem 0;
|
|
|
|
.search-field {
|
|
|
|
padding: 0.5em;
|
|
|
|
}
|
|
|
|
.search-submit{
|
|
|
|
z-index: 10;
|
2024-04-01 15:54:23 +02:00
|
|
|
margin: 0 0 0 -3rem;
|
2024-02-28 16:18:23 +01:00
|
|
|
border: none;
|
|
|
|
width: 2.5rem;
|
|
|
|
height: 2.5rem;
|
|
|
|
background: none;
|
|
|
|
cursor: pointer;
|
|
|
|
font-size: 0px;
|
|
|
|
}
|
|
|
|
}
|
2024-01-14 20:13:11 +01:00
|
|
|
|
|
|
|
|
2024-02-28 16:18:23 +01:00
|
|
|
.xarxaprod-icon-search:before {
|
|
|
|
position: absolute;
|
|
|
|
padding: 0;
|
|
|
|
margin: 0.2rem 0 0 -1.5rem;
|
|
|
|
z-index: 0;
|
|
|
|
min-width: 2.5rem;
|
|
|
|
min-height: 2.5rem;
|
|
|
|
font-size: 2rem;
|
|
|
|
content: "\26b2";
|
2024-04-01 15:54:23 +02:00
|
|
|
color: $color__grey-dark;
|
2024-02-28 16:18:23 +01:00
|
|
|
-webkit-transform: rotate(45deg);
|
|
|
|
-moz-transform: rotate(45deg);
|
|
|
|
-o-transform: rotate(45deg);
|
|
|
|
transform: rotate(45deg);
|
|
|
|
}
|