Compare commits

..

No commits in common. "f4a50c2d90958307424c2d8b86128a8a556a79d5" and "5b1262e01b464e35a7bb066b195aa1718da0755e" have entirely different histories.

10 changed files with 721 additions and 623 deletions

View File

@ -321,6 +321,12 @@ Add your custom styles in this file so it is easier to update the theme.
/* Contact Form 7 /* Contact Form 7
--------------------------------------------- */ --------------------------------------------- */
/* contact forms styles used in wp backend with CF7 */
/* styles applied if written in wp backend
* class="contactform contactform-WHATEVER"
* */
/* Guttenslider /* Guttenslider
--------------------------------------------- */ --------------------------------------------- */
@ -993,7 +999,7 @@ Add your custom styles in this file so it is easier to update the theme.
margin: 0.1em 0; margin: 0.1em 0;
padding: 0.2em 0.2em 0 0.2em; padding: 0.2em 0.2em 0 0.2em;
color: #000; color: #000;
border: 0.05em solid #000; border: 1px solid #000;
background-color: none; background-color: none;
font-size: 0.8rem; font-size: 0.8rem;
} }
@ -1301,7 +1307,7 @@ Add your custom styles in this file so it is easier to update the theme.
} }
.edit-post-visual-editor__content-area .editor-styles-wrapper select { .edit-post-visual-editor__content-area .editor-styles-wrapper select {
border: 0.05em solid #000; border: 1px solid #000;
} }
.edit-post-visual-editor__content-area .editor-styles-wrapper textarea { .edit-post-visual-editor__content-area .editor-styles-wrapper textarea {
@ -1582,19 +1588,49 @@ Add your custom styles in this file so it is easier to update the theme.
margin: 1rem; margin: 1rem;
} }
.edit-post-visual-editor__content-area .editor-styles-wrapper .main-navigation .main-navigation-content, .edit-post-visual-editor__content-area .editor-styles-wrapper .main-navigation ul,
.edit-post-visual-editor__content-area .editor-styles-wrapper .secondary-navigation .main-navigation-content { .edit-post-visual-editor__content-area .editor-styles-wrapper .secondary-navigation ul {
display: none; display: none;
list-style: none;
margin: 0;
padding-left: 0;
}
.edit-post-visual-editor__content-area .editor-styles-wrapper .main-navigation ul .sub-menu,
.edit-post-visual-editor__content-area .editor-styles-wrapper .secondary-navigation ul .sub-menu {
padding-top: 0.5rem;
padding-left: 1rem;
}
.edit-post-visual-editor__content-area .editor-styles-wrapper .main-navigation li,
.edit-post-visual-editor__content-area .editor-styles-wrapper .secondary-navigation li {
position: relative;
}
.edit-post-visual-editor__content-area .editor-styles-wrapper .main-navigation a,
.edit-post-visual-editor__content-area .editor-styles-wrapper .secondary-navigation a {
text-decoration: none;
font-size: 1rem;
} }
.edit-post-visual-editor__content-area .editor-styles-wrapper .main-navigation.toggled ul { .edit-post-visual-editor__content-area .editor-styles-wrapper .main-navigation.toggled ul {
display: block; display: block;
position: relative; margin: 0;
padding: 0;
} }
.edit-post-visual-editor__content-area .editor-styles-wrapper .main-navigation.toggled .menu-toggle { .edit-post-visual-editor__content-area .editor-styles-wrapper .main-navigation.toggled ul .sub-menu {
position: relative; padding: 0.5em;
z-index: 999; }
.edit-post-visual-editor__content-area .editor-styles-wrapper .main-navigation.toggled li {
padding: 0;
}
.edit-post-visual-editor__content-area .editor-styles-wrapper .main-navigation.toggled a {
margin: 0;
padding: 0.5em;
display: block;
} }
.edit-post-visual-editor__content-area .editor-styles-wrapper .main-navigation.toggled .main-navigation-content { .edit-post-visual-editor__content-area .editor-styles-wrapper .main-navigation.toggled .main-navigation-content {
@ -1609,14 +1645,9 @@ Add your custom styles in this file so it is easier to update the theme.
overflow: auto; overflow: auto;
} }
.edit-post-visual-editor__content-area .editor-styles-wrapper .main-navigation.toggled li { .edit-post-visual-editor__content-area .editor-styles-wrapper .main-navigation.toggled .menu-toggle {
display: block; position: relative;
} z-index: 9999;
.edit-post-visual-editor__content-area .editor-styles-wrapper .main-navigation.toggled a {
display: block;
min-height: 100%;
padding: 0.5em 0;
} }
.edit-post-visual-editor__content-area .editor-styles-wrapper .main-navigation.toggled .current-menu-ancestor > a::after { .edit-post-visual-editor__content-area .editor-styles-wrapper .main-navigation.toggled .current-menu-ancestor > a::after {
@ -1633,6 +1664,74 @@ Add your custom styles in this file so it is easier to update the theme.
width: 100%; width: 100%;
background-color: #000; background-color: #000;
} }
.edit-post-visual-editor__content-area .editor-styles-wrapper .secondary-navigation {
padding: 0 1em 1em 0;
}
.edit-post-visual-editor__content-area .editor-styles-wrapper .secondary-navigation ul {
display: inline-block;
}
.edit-post-visual-editor__content-area .editor-styles-wrapper .secondary-navigation ul li {
padding: 0.5em 0;
}
.edit-post-visual-editor__content-area .editor-styles-wrapper .secondary-navigation a {
text-transform: uppercase;
}
.edit-post-visual-editor__content-area .editor-styles-wrapper .toggle-secondary-navigation .show-mobile {
display: inherit;
}
.edit-post-visual-editor__content-area .editor-styles-wrapper .toggle,
.edit-post-visual-editor__content-area .editor-styles-wrapper .toggled-menu {
display: none;
}
.edit-post-visual-editor__content-area .editor-styles-wrapper .toggle:checked + .toggled-menu {
display: block;
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100vh;
margin-top: 0;
padding: 0 2rem;
}
.edit-post-visual-editor__content-area .editor-styles-wrapper .toggle-show {
position: relative;
display: inline-block;
width: 1.8em;
height: 1.4em;
margin-right: 0.3em;
border-top: 0.3em solid #000;
border-bottom: 0.3em solid #000;
}
.edit-post-visual-editor__content-area .editor-styles-wrapper .toggle-show::before {
content: "";
position: absolute;
top: 0.3em;
left: 0;
width: 100%;
border-top: 0.3em solid #000;
}
.edit-post-visual-editor__content-area .editor-styles-wrapper .toggle-hide {
display: flex;
justify-content: end;
margin-right: -0.5em;
}
.edit-post-visual-editor__content-area .editor-styles-wrapper .toggle-hide::after {
content: "x";
padding: 0;
font-size: 3rem;
font-weight: 700;
}
} }
@media screen and (min-width: 48em) { @media screen and (min-width: 48em) {
@ -1656,11 +1755,6 @@ Add your custom styles in this file so it is easier to update the theme.
display: none; display: none;
} }
.edit-post-visual-editor__content-area .editor-styles-wrapper .main-navigation .main-navigation-content,
.edit-post-visual-editor__content-area .editor-styles-wrapper .secondary-navigation .main-navigation-content {
display: inline-block;
}
.edit-post-visual-editor__content-area .editor-styles-wrapper .main-navigation ul, .edit-post-visual-editor__content-area .editor-styles-wrapper .main-navigation ul,
.edit-post-visual-editor__content-area .editor-styles-wrapper .secondary-navigation ul { .edit-post-visual-editor__content-area .editor-styles-wrapper .secondary-navigation ul {
display: flex; display: flex;
@ -1674,33 +1768,34 @@ Add your custom styles in this file so it is easier to update the theme.
border-radius: 0.2em; border-radius: 0.2em;
} }
.edit-post-visual-editor__content-area .editor-styles-wrapper .main-navigation ul ul.sub-menu, .edit-post-visual-editor__content-area .editor-styles-wrapper .main-navigation ul .sub-menu,
.edit-post-visual-editor__content-area .editor-styles-wrapper .secondary-navigation ul ul.sub-menu { .edit-post-visual-editor__content-area .editor-styles-wrapper .secondary-navigation ul .sub-menu {
float: left; float: left;
position: absolute; position: absolute;
top: 100%; top: 100%;
left: -999em; left: -999em;
z-index: 99999; z-index: 99999;
padding: 0.5rem; padding-top: 0.5rem;
padding-left: 1rem;
} }
.edit-post-visual-editor__content-area .editor-styles-wrapper .main-navigation ul ul.sub-menu ul, .edit-post-visual-editor__content-area .editor-styles-wrapper .main-navigation ul .sub-menu ul,
.edit-post-visual-editor__content-area .editor-styles-wrapper .secondary-navigation ul ul.sub-menu ul { .edit-post-visual-editor__content-area .editor-styles-wrapper .secondary-navigation ul .sub-menu ul {
left: -999em; left: -999em;
top: 0; top: 0;
} }
.edit-post-visual-editor__content-area .editor-styles-wrapper .main-navigation ul ul.sub-menu li:hover > ul, .edit-post-visual-editor__content-area .editor-styles-wrapper .main-navigation ul .sub-menu li:hover > ul,
.edit-post-visual-editor__content-area .editor-styles-wrapper .main-navigation ul ul.sub-menu li.focus > ul, .edit-post-visual-editor__content-area .editor-styles-wrapper .main-navigation ul .sub-menu li.focus > ul,
.edit-post-visual-editor__content-area .editor-styles-wrapper .secondary-navigation ul ul.sub-menu li:hover > ul, .edit-post-visual-editor__content-area .editor-styles-wrapper .secondary-navigation ul .sub-menu li:hover > ul,
.edit-post-visual-editor__content-area .editor-styles-wrapper .secondary-navigation ul ul.sub-menu li.focus > ul { .edit-post-visual-editor__content-area .editor-styles-wrapper .secondary-navigation ul .sub-menu li.focus > ul {
display: block; display: block;
left: 4em; left: 4em;
top: 3em; top: 3em;
} }
.edit-post-visual-editor__content-area .editor-styles-wrapper .main-navigation ul ul.sub-menu a, .edit-post-visual-editor__content-area .editor-styles-wrapper .main-navigation ul .sub-menu a,
.edit-post-visual-editor__content-area .editor-styles-wrapper .secondary-navigation ul ul.sub-menu a { .edit-post-visual-editor__content-area .editor-styles-wrapper .secondary-navigation ul .sub-menu a {
display: flex; display: flex;
align-items: center; align-items: center;
min-height: 100%; min-height: 100%;
@ -1709,7 +1804,6 @@ Add your custom styles in this file so it is easier to update the theme.
.edit-post-visual-editor__content-area .editor-styles-wrapper .main-navigation ul li, .edit-post-visual-editor__content-area .editor-styles-wrapper .main-navigation ul li,
.edit-post-visual-editor__content-area .editor-styles-wrapper .secondary-navigation ul li { .edit-post-visual-editor__content-area .editor-styles-wrapper .secondary-navigation ul li {
position: relative;
padding: 1em; padding: 1em;
} }
@ -1720,15 +1814,6 @@ Add your custom styles in this file so it is easier to update the theme.
left: auto; left: auto;
} }
.edit-post-visual-editor__content-area .editor-styles-wrapper .main-navigation ul a,
.edit-post-visual-editor__content-area .editor-styles-wrapper .secondary-navigation ul a {
display: flex;
align-items: center;
min-height: 100%;
text-decoration: none;
font-size: 1rem;
}
.edit-post-visual-editor__content-area .editor-styles-wrapper .main-navigation { .edit-post-visual-editor__content-area .editor-styles-wrapper .main-navigation {
padding-bottom: 1em; padding-bottom: 1em;
} }
@ -2268,7 +2353,7 @@ Add your custom styles in this file so it is easier to update the theme.
cursor: pointer; cursor: pointer;
font-weight: 900; font-weight: 900;
font-size: 0.9rem; font-size: 0.9rem;
border: 0.05em solid #000; border: 1px solid #000;
} }
.edit-post-visual-editor__content-area .editor-styles-wrapper .xarxaprod-titol-opcions::after { .edit-post-visual-editor__content-area .editor-styles-wrapper .xarxaprod-titol-opcions::after {
@ -2546,175 +2631,144 @@ Add your custom styles in this file so it is easier to update the theme.
content: ">"; content: ">";
} }
@media screen { .edit-post-visual-editor__content-area .editor-styles-wrapper .wpcf7-not-valid:not(:focus) {
background-color: #ff686e;
.edit-post-visual-editor__content-area .editor-styles-wrapper {
/* contact forms styles used in wp backend with CF7 */
/* styles applied if written in wp backend
* class="contactform contactform-WHATEVER"
* */
}
.edit-post-visual-editor__content-area .editor-styles-wrapper .wpcf7-not-valid:not(:focus) {
background-color: #ff686e;
}
.edit-post-visual-editor__content-area .editor-styles-wrapper .wpcf7-not-valid-tip {
color: #ff686e;
}
.edit-post-visual-editor__content-area .editor-styles-wrapper .wpcf7 form.invalid .wpcf7-response-output,
.edit-post-visual-editor__content-area .editor-styles-wrapper .wpcf7 form.unaccepted .wpcf7-response-output,
.edit-post-visual-editor__content-area .editor-styles-wrapper .wpcf7 form.payment-required .wpcf7-response-output {
border-color: #f6cc4c;
background-color: #f6cc4c;
color: #fff;
font-family: "Neue Haas Grotesk Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
font-weight: 700;
text-align: center;
margin: 0;
padding: 0;
}
.edit-post-visual-editor__content-area .editor-styles-wrapper .wpcf7-form .wpcf7-submit {
margin-left: 1rem;
}
.edit-post-visual-editor__content-area .editor-styles-wrapper .wpcf7-form .wpcf7-spinner {
margin: 0 -24px 0 0;
}
.edit-post-visual-editor__content-area .editor-styles-wrapper .wpcf7-list-item-label {
margin: 0 0.3rem;
}
.edit-post-visual-editor__content-area .editor-styles-wrapper .wpcf7-form input:not([type="submit"]),
.edit-post-visual-editor__content-area .editor-styles-wrapper .wpcf7-form textarea {
background: transparent;
border: 0.05em solid #000;
padding: 1em;
}
.edit-post-visual-editor__content-area .editor-styles-wrapper .contactform {
margin-bottom: 1rem;
}
.edit-post-visual-editor__content-area .editor-styles-wrapper .contactform br {
display: none;
}
.edit-post-visual-editor__content-area .editor-styles-wrapper .contactform p {
display: block;
break-inside: avoid-column;
margin-top: 0;
}
.edit-post-visual-editor__content-area .editor-styles-wrapper .contactform .break-after-column,
.edit-post-visual-editor__content-area .editor-styles-wrapper .contactform .saltar-columna {
break-after: column;
}
.edit-post-visual-editor__content-area .editor-styles-wrapper .contactform-consultoria .contactform-name,
.edit-post-visual-editor__content-area .editor-styles-wrapper .contactform-consultoria .contactform-email {
max-width: 40%;
display: inline-block;
}
.edit-post-visual-editor__content-area .editor-styles-wrapper .contactform-consultoria .contactform-name {
float: left;
}
.edit-post-visual-editor__content-area .editor-styles-wrapper .contactform-consultoria .contactform-email {
float: right;
margin-bottom: 1rem;
}
.edit-post-visual-editor__content-area .editor-styles-wrapper .contactform-acceptance {
display: flex;
align-items: center;
justify-content: end;
}
.edit-post-visual-editor__content-area .editor-styles-wrapper .contactform-fund-info {
display: inline-block;
column-count: 1;
column-gap: 1rem;
width: 100%;
}
.edit-post-visual-editor__content-area .editor-styles-wrapper .contactform-fund-info .contactform-descripcio textarea {
display: inline-block;
min-height: 23.5em;
}
.edit-post-visual-editor__content-area .editor-styles-wrapper .contactform-fund-options {
display: flex;
flex-direction: column;
justify-content: space-between;
}
.edit-post-visual-editor__content-area .editor-styles-wrapper .contactform-fund-options p {
display: inline-block;
}
.edit-post-visual-editor__content-area .editor-styles-wrapper .contactform-fund-options label.oficinasuport-titol-opcions {
border: 0.05em solid #000;
width: 100%;
display: inline-block;
margin-bottom: 1em;
}
.edit-post-visual-editor__content-area .editor-styles-wrapper .contactform-fund-options .wpcf7-list-item {
display: block;
}
.edit-post-visual-editor__content-area .editor-styles-wrapper .contactform-fund-options .wpcf7-list-item label {
display: flex;
flex-direction: row-reverse;
justify-content: left;
}
.edit-post-visual-editor__content-area .editor-styles-wrapper .contactform-fund-options .wpcf7-form-control-wrap[data-name="oferta-data-start"],
.edit-post-visual-editor__content-area .editor-styles-wrapper .contactform-fund-options .wpcf7-form-control-wrap[data-name="oferta-data-end"] {
display: block;
}
.edit-post-visual-editor__content-area .editor-styles-wrapper .contactform-fund-options .wpcf7-form-control-wrap[data-name="oferta-data-start"] input[type="date"],
.edit-post-visual-editor__content-area .editor-styles-wrapper .contactform-fund-options .wpcf7-form-control-wrap[data-name="oferta-data-end"] input[type="date"] {
width: auto;
background-color: #fff;
}
.edit-post-visual-editor__content-area .editor-styles-wrapper .contactform-fund-options .wpcf7-form-control-wrap[data-name="oferta-data-start"]::before,
.edit-post-visual-editor__content-area .editor-styles-wrapper .contactform-fund-options .wpcf7-form-control-wrap[data-name="oferta-data-end"]::before {
display: inline-block;
width: 2rem;
}
.edit-post-visual-editor__content-area .editor-styles-wrapper .contactform-fund-options .wpcf7-form-control-wrap[data-name="oferta-data-start"]::before {
content: "inici: ";
}
.edit-post-visual-editor__content-area .editor-styles-wrapper .contactform-fund-options .wpcf7-form-control-wrap[data-name="oferta-data-end"]::before {
content: "fi: ";
}
} }
@media screen and (min-width: 48em) { .edit-post-visual-editor__content-area .editor-styles-wrapper .wpcf7-not-valid-tip {
color: #ff686e;
}
.edit-post-visual-editor__content-area .editor-styles-wrapper .wpcf7-form { .edit-post-visual-editor__content-area .editor-styles-wrapper .wpcf7 form.invalid .wpcf7-response-output,
text-align: center; .edit-post-visual-editor__content-area .editor-styles-wrapper .wpcf7 form.unaccepted .wpcf7-response-output,
} .edit-post-visual-editor__content-area .editor-styles-wrapper .wpcf7 form.payment-required .wpcf7-response-output {
border-color: #f6cc4c;
background-color: #f6cc4c;
color: #fff;
font-family: "Neue Haas Grotesk Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
font-weight: 700;
text-align: center;
margin: 0;
padding: 0;
}
.edit-post-visual-editor__content-area .editor-styles-wrapper .contactform-fund-info { .edit-post-visual-editor__content-area .editor-styles-wrapper .wpcf7-form .wpcf7-submit {
column-count: 2; margin-left: 1rem;
} }
.edit-post-visual-editor__content-area .editor-styles-wrapper .contactform-fund-options { .edit-post-visual-editor__content-area .editor-styles-wrapper .wpcf7-form .wpcf7-spinner {
flex-direction: row; margin: 0 -24px 0 0;
} }
.edit-post-visual-editor__content-area .editor-styles-wrapper .wpcf7-list-item-label {
margin: 0 0.3rem;
}
.edit-post-visual-editor__content-area .editor-styles-wrapper .wpcf7-form {
text-align: center;
}
.edit-post-visual-editor__content-area .editor-styles-wrapper .wpcf7-form input:not([type="submit"]),
.edit-post-visual-editor__content-area .editor-styles-wrapper .wpcf7-form textarea {
background: transparent;
border: 0.1em solid #000;
padding: 1em;
}
.edit-post-visual-editor__content-area .editor-styles-wrapper .contactform {
margin-bottom: 1rem;
}
.edit-post-visual-editor__content-area .editor-styles-wrapper .contactform br {
display: none;
}
.edit-post-visual-editor__content-area .editor-styles-wrapper .contactform p {
display: block;
break-inside: avoid-column;
margin-top: 0;
}
.edit-post-visual-editor__content-area .editor-styles-wrapper .contactform .break-after-column,
.edit-post-visual-editor__content-area .editor-styles-wrapper .contactform .saltar-columna {
break-after: column;
}
.edit-post-visual-editor__content-area .editor-styles-wrapper .contactform-consultoria .contactform-name,
.edit-post-visual-editor__content-area .editor-styles-wrapper .contactform-consultoria .contactform-email {
max-width: 40%;
display: inline-block;
}
.edit-post-visual-editor__content-area .editor-styles-wrapper .contactform-consultoria .contactform-name {
float: left;
}
.edit-post-visual-editor__content-area .editor-styles-wrapper .contactform-consultoria .contactform-email {
float: right;
margin-bottom: 1rem;
}
.edit-post-visual-editor__content-area .editor-styles-wrapper .contactform-acceptance {
display: flex;
align-items: center;
justify-content: end;
}
.edit-post-visual-editor__content-area .editor-styles-wrapper .contactform-fund-info {
display: inline-block;
column-count: 2;
column-gap: 1rem;
width: 100%;
}
.edit-post-visual-editor__content-area .editor-styles-wrapper .contactform-fund-info .contactform-descripcio textarea {
display: inline-block;
min-height: 15.5em;
}
.edit-post-visual-editor__content-area .editor-styles-wrapper .contactform-fund-options {
display: flex;
justify-content: space-between;
}
.edit-post-visual-editor__content-area .editor-styles-wrapper .contactform-fund-options p {
display: inline-block;
}
.edit-post-visual-editor__content-area .editor-styles-wrapper .contactform-fund-options .wpcf7-list-item {
display: block;
}
.edit-post-visual-editor__content-area .editor-styles-wrapper .contactform-fund-options .wpcf7-list-item label {
display: flex;
flex-direction: row-reverse;
justify-content: left;
}
.edit-post-visual-editor__content-area .editor-styles-wrapper .contactform-fund-options .wpcf7-form-control-wrap[data-name="oferta-data-start"],
.edit-post-visual-editor__content-area .editor-styles-wrapper .contactform-fund-options .wpcf7-form-control-wrap[data-name="oferta-data-end"] {
display: block;
}
.edit-post-visual-editor__content-area .editor-styles-wrapper .contactform-fund-options .wpcf7-form-control-wrap[data-name="oferta-data-start"] input[type="date"],
.edit-post-visual-editor__content-area .editor-styles-wrapper .contactform-fund-options .wpcf7-form-control-wrap[data-name="oferta-data-end"] input[type="date"] {
width: auto;
background-color: #fff;
}
.edit-post-visual-editor__content-area .editor-styles-wrapper .contactform-fund-options .wpcf7-form-control-wrap[data-name="oferta-data-start"]::before,
.edit-post-visual-editor__content-area .editor-styles-wrapper .contactform-fund-options .wpcf7-form-control-wrap[data-name="oferta-data-end"]::before {
display: inline-block;
width: 2rem;
}
.edit-post-visual-editor__content-area .editor-styles-wrapper .contactform-fund-options .wpcf7-form-control-wrap[data-name="oferta-data-start"]::before {
content: "inici: ";
}
.edit-post-visual-editor__content-area .editor-styles-wrapper .contactform-fund-options .wpcf7-form-control-wrap[data-name="oferta-data-end"]::before {
content: "fi: ";
} }
.edit-post-visual-editor__content-area .editor-styles-wrapper .home { .edit-post-visual-editor__content-area .editor-styles-wrapper .home {

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -27,7 +27,7 @@ textarea {
} }
select { select {
border: $border__line; border: 1px solid $color__border-input;
} }
textarea { textarea {

View File

@ -36,7 +36,7 @@ dd {
margin:0.1em 0; margin:0.1em 0;
padding: 0.2em 0.2em 0 0.2em; padding: 0.2em 0.2em 0 0.2em;
color: $color__text-screen; color: $color__text-screen;
border: $border__line; border: 1px solid $color__black;
background-color: none; background-color: none;
font-size: $font__size-body*0.8; font-size: $font__size-body*0.8;
} }

View File

@ -377,7 +377,7 @@
cursor: pointer; cursor: pointer;
font-weight: 900; font-weight: 900;
font-size: $font__size-body*0.9; font-size: $font__size-body*0.9;
border: $border__line; border: 1px solid $color__border-button;
&:after { &:after {
content: ">"; content: ">";
display: inline; display: inline;

View File

@ -12,20 +12,33 @@
margin: 1rem; margin: 1rem;
} }
.main-navigation,.secondary-navigation { .main-navigation,.secondary-navigation {
.main-navigation-content { ul {
display: none; display: none;
list-style: none;
margin: 0;
padding-left: 0;
ul.sub-menu {
padding-top: 0.5rem;
padding-left: 1rem;
}
}
li {
position: relative;
}
a {
display: flex;
align-items: center;
min-height: 100%;
text-decoration: none;
font-size: 1rem;
} }
} }
.main-navigation { .main-navigation {
&.toggled { &.toggled {
ul { ul {
display: block; display: block;
position: relative;
} }
.menu-toggle {
position: relative;
z-index: 999;
}
.main-navigation-content { .main-navigation-content {
display: inline-block; display: inline-block;
position: absolute; position: absolute;
@ -37,14 +50,10 @@
background-color: rgba(255,255,255,0.95); background-color: rgba(255,255,255,0.95);
overflow: auto; overflow: auto;
} }
li { .menu-toggle {
display: block; position: relative;
} z-index: 9999;
a { }
display: block;
min-height: 100%;
padding: 0.5em 0;
}
.current-menu-ancestor > a::after { .current-menu-ancestor > a::after {
background-color: transparent; background-color: transparent;
} }
@ -61,56 +70,66 @@
} }
} }
.secondary-navigation { .secondary-navigation {
padding: 0 1em 1em 0;
ul {
display: inline-block;
li {
padding: 0.5em 0;
}
}
a {
text-transform: uppercase;
}
} }
.menu-item-has-children { .menu-item-has-children {
} }
/* begin of menu-hidden */ /* begin of menu-hidden */
//.toggle-secondary-navigation .show-mobile{ .toggle-secondary-navigation .show-mobile{
// display:inherit; display:inherit;
//} }
//.toggle, .toggle,
//.toggled-menu { .toggled-menu {
// display: none; display: none;
//} }
//.toggle:checked+.toggled-menu{ .toggle:checked+.toggled-menu{
// display: block; display: block;
// position: absolute; position: absolute;
// left:0; left:0;
// top:0; top:0;
// width: 100%; width: 100%;
// height: 100vh; height: 100vh;
// margin-top: 0; margin-top: 0;
// padding: 0 2rem; padding: 0 2rem;
//} }
//.toggle-show { .toggle-show {
// position: relative; position: relative;
// display: inline-block; display: inline-block;
// width: 1.8em; width: 1.8em;
// height: 1.4em; height: 1.4em;
// margin-right: 0.3em; margin-right: 0.3em;
// border-top: 0.3em solid $color__black; border-top: 0.3em solid $color__black;
// border-bottom: 0.3em solid $color__black; border-bottom: 0.3em solid $color__black;
//} }
//.toggle-show::before { .toggle-show::before {
// content: ""; content: "";
// position: absolute; position: absolute;
// top: 0.3em; top: 0.3em;
// left: 0; left: 0;
// width: 100%; width: 100%;
// border-top: 0.3em solid $color__black; border-top: 0.3em solid $color__black;
//} }
//.toggle-hide { .toggle-hide {
// display: flex; display: flex;
// justify-content: end; justify-content: end;
// margin-right: -0.5em; margin-right: -0.5em;
//} }
//.toggle-hide::after{ .toggle-hide::after{
// content: "x"; content: "x";
// padding: 0; padding: 0;
// font-size: 3rem; font-size: 3rem;
// font-weight: bold; font-weight: bold;
//} }
/* end of menu hidden*/ /* end of menu hidden*/
} }
@ -119,9 +138,11 @@
} }
.main-navigation-content { .main-navigation-content {
li { li {
padding: 0.5rem 0;
} }
} }
.secondary-navigation-content { .secondary-navigation-content {
padding: 4rem 2rem;
} }
} }
@media screen and (min-width: 48em) { @media screen and (min-width: 48em) {
@ -136,9 +157,6 @@
} }
.main-navigation,.secondary-navigation { .main-navigation,.secondary-navigation {
.main-navigation-content {
display: inline-block;
}
ul { ul {
display: flex; display: flex;
flex-flow: row; flex-flow: row;
@ -147,13 +165,14 @@
box-shadow: -4px 4px 15px #999; box-shadow: -4px 4px 15px #999;
border-radius: 0.2em; border-radius: 0.2em;
} }
ul.sub-menu { .sub-menu {
float: left; float: left;
position: absolute; position: absolute;
top: 100%; top: 100%;
left: -999em; left: -999em;
z-index: 99999; z-index: 99999;
padding: 0.5rem; padding-top: 0.5rem;
padding-left: 1rem;
ul { ul {
left: -999em; left: -999em;
@ -175,7 +194,6 @@
} }
} }
li { li {
position: relative;
padding: 1em; padding: 1em;
&:hover > ul, &:hover > ul,
&.focus > ul { &.focus > ul {
@ -184,14 +202,6 @@
&.lang-item { &.lang-item {
} }
} }
a {
display: flex;
align-items: center;
min-height: 100%;
text-decoration: none;
font-size: 1rem;
}
} }
} }
@ -201,7 +211,9 @@
justify-content: end; justify-content: end;
ul.sub-menu { ul.sub-menu {
flex-direction: column; flex-direction: column;
//padding: 0.5rem;
li { li {
//padding: 0.5rem;
} }
} }
} }

View File

@ -1,151 +1,126 @@
@media screen { /* contact forms styles used in wp backend with CF7 */
/* contact forms styles used in wp backend with CF7 */
.wpcf7-not-valid:not(:focus) {
.wpcf7-not-valid:not(:focus) { background-color: $color__red;
background-color: $color__red; }
.wpcf7-not-valid-tip {
color: $color__red;
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
border-color: $color__yellow;
background-color: $color__yellow;
color: $color__white;
font-family: $font__main;
font-weight: bold;
text-align: center;
margin: 0em;
padding: 0rem;
}
.wpcf7-form {
.wpcf7-submit {
margin-left: 1rem;
} }
.wpcf7-not-valid-tip { .wpcf7-spinner {
color: $color__red; margin: 0 -24px 0 0;
} }
.wpcf7 form.invalid .wpcf7-response-output, }
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output { .wpcf7-list-item-label {
border-color: $color__yellow; margin: 0 0.3rem;
background-color: $color__yellow; }
color: $color__white; .wpcf7-form {
font-family: $font__main; text-align: center;
font-weight: bold; input:not([type="submit"]),textarea {
text-align: center; background: transparent;
margin: 0em; border: 0.1em solid $color__black;
padding: 0rem; padding: 1em;
//&[type="email"] {
// text-align: center;
//}
} }
.wpcf7-form { }
.wpcf7-submit {
margin-left: 1rem; /* styles applied if written in wp backend
} * class="contactform contactform-WHATEVER"
.wpcf7-spinner { * */
margin: 0 -24px 0 0; .contactform {
} margin-bottom: 1rem;
br {
display: none;
} }
p {
.wpcf7-list-item-label { display: block;
margin: 0 0.3rem; break-inside: avoid-column;
margin-top: 0;
} }
.wpcf7-form { .break-after-column, .saltar-columna{
//text-align: center; break-after:column;
input:not([type="submit"]),textarea {
background: transparent;
border: $border__line;
padding: 1em;
}
} }
}
/* styles applied if written in wp backend .contactform-consultoria {
* class="contactform contactform-WHATEVER" .contactform-name, .contactform-email {
* */ max-width: 40%;
.contactform {
margin-bottom: 1rem;
br {
display: none;
}
p {
display: block;
break-inside: avoid-column;
margin-top: 0;
}
.break-after-column, .saltar-columna{
break-after:column;
}
}
.contactform-consultoria {
.contactform-name, .contactform-email {
max-width: 40%;
display: inline-block;
}
.contactform-name {
float: left;
}
.contactform-email {
float:right;
margin-bottom: 1rem;
}
.contactform-message {
}
}
.contactform-acceptance {
display: flex;
align-items: center;
justify-content: end;
}
.contactform-fund-info {
display: inline-block; display: inline-block;
column-count: 1;
column-gap: $grid__gap;
width: 100%;
.contactform-descripcio textarea {
display: inline-block;
min-height: 23.5em;
}
} }
.contactform-fund-options { .contactform-name {
display: flex; float: left;
flex-direction: column; }
justify-content: space-between; .contactform-email {
p{ float:right;
display: inline-block; margin-bottom: 1rem;
} }
label.oficinasuport-titol-opcions { .contactform-message {
border: $border__line;
width: 100%;
display: inline-block;
margin-bottom: 1em;
}
.wpcf7-list-item {
display:block;
label {
display: flex;
flex-direction: row-reverse;
justify-content: left;
}
}
.wpcf7-form-control-wrap {
&[data-name="oferta-data-start"],&[data-name="oferta-data-end"] {
display: block;
input[type="date"] {
width: auto;
background-color: $color__white;
}
&::before {
display: inline-block;
width: 2rem;
}
}
&[data-name="oferta-data-start"]::before {
content:"inici: ";
}
&[data-name="oferta-data-end"]::before {
content:"fi: ";
}
}
} }
} }
@media screen and (max-width: 48em) { .contactform-acceptance {
//only smaller than 48em display: flex;
align-items: center;
justify-content: end;
} }
@media screen and (min-width: 48em) { .contactform-fund-info {
//only bigger than 48em display: inline-block;
.wpcf7-form { column-count: 2;
text-align: center; column-gap: $grid__gap;
} width: 100%;
.contactform-fund-info { .contactform-descripcio textarea {
column-count: 2; display: inline-block;
} min-height: 15.5em;
.contactform-fund-options {
flex-direction: row;
} }
} }
@media screen and (min-width: 80em) { .contactform-fund-options {
//only bigger than 80rem display: flex;
justify-content: space-between;
p{
display: inline-block;
}
.wpcf7-list-item {
display:block;
label {
display: flex;
flex-direction: row-reverse;
justify-content: left;
}
}
.wpcf7-form-control-wrap {
&[data-name="oferta-data-start"],&[data-name="oferta-data-end"] {
display: block;
input[type="date"] {
width: auto;
background-color: $color__white;
}
&::before {
display: inline-block;
width: 2rem;
}
}
&[data-name="oferta-data-start"]::before {
content:"inici: ";
}
&[data-name="oferta-data-end"]::before {
content:"fi: ";
}
}
} }

459
style.css
View File

@ -850,7 +850,7 @@ dd {
margin: 0.1em 0; margin: 0.1em 0;
padding: 0.2em 0.2em 0 0.2em; padding: 0.2em 0.2em 0 0.2em;
color: #000; color: #000;
border: 0.05em solid #000; border: 1px solid #000;
background-color: none; background-color: none;
font-size: 0.8rem; font-size: 0.8rem;
} }
@ -1163,7 +1163,7 @@ textarea:focus {
} }
select { select {
border: 0.05em solid #000; border: 1px solid #000;
} }
textarea { textarea {
@ -1446,19 +1446,49 @@ textarea {
margin: 1rem; margin: 1rem;
} }
.main-navigation .main-navigation-content, .main-navigation ul,
.secondary-navigation .main-navigation-content { .secondary-navigation ul {
display: none; display: none;
list-style: none;
margin: 0;
padding-left: 0;
}
.main-navigation ul .sub-menu,
.secondary-navigation ul .sub-menu {
padding-top: 0.5rem;
padding-left: 1rem;
}
.main-navigation li,
.secondary-navigation li {
position: relative;
}
.main-navigation a,
.secondary-navigation a {
text-decoration: none;
font-size: 1rem;
} }
.main-navigation.toggled ul { .main-navigation.toggled ul {
display: block; display: block;
position: relative; margin: 0;
padding: 0;
} }
.main-navigation.toggled .menu-toggle { .main-navigation.toggled ul .sub-menu {
position: relative; padding: 0.5em;
z-index: 999; }
.main-navigation.toggled li {
padding: 0;
}
.main-navigation.toggled a {
margin: 0;
padding: 0.5em;
display: block;
} }
.main-navigation.toggled .main-navigation-content { .main-navigation.toggled .main-navigation-content {
@ -1473,14 +1503,9 @@ textarea {
overflow: auto; overflow: auto;
} }
.main-navigation.toggled li { .main-navigation.toggled .menu-toggle {
display: block; position: relative;
} z-index: 9999;
.main-navigation.toggled a {
display: block;
min-height: 100%;
padding: 0.5em 0;
} }
.main-navigation.toggled .current-menu-ancestor > a::after { .main-navigation.toggled .current-menu-ancestor > a::after {
@ -1498,7 +1523,74 @@ textarea {
background-color: #000; background-color: #000;
} }
.secondary-navigation {
padding: 0 1em 1em 0;
}
.secondary-navigation ul {
display: inline-block;
}
.secondary-navigation ul li {
padding: 0.5em 0;
}
.secondary-navigation a {
text-transform: uppercase;
}
/* begin of menu-hidden */ /* begin of menu-hidden */
.toggle-secondary-navigation .show-mobile {
display: inherit;
}
.toggle,
.toggled-menu {
display: none;
}
.toggle:checked + .toggled-menu {
display: block;
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100vh;
margin-top: 0;
padding: 0 2rem;
}
.toggle-show {
position: relative;
display: inline-block;
width: 1.8em;
height: 1.4em;
margin-right: 0.3em;
border-top: 0.3em solid #000;
border-bottom: 0.3em solid #000;
}
.toggle-show::before {
content: "";
position: absolute;
top: 0.3em;
left: 0;
width: 100%;
border-top: 0.3em solid #000;
}
.toggle-hide {
display: flex;
justify-content: end;
margin-right: -0.5em;
}
.toggle-hide::after {
content: "x";
padding: 0;
font-size: 3rem;
font-weight: 700;
}
/* end of menu hidden*/ /* end of menu hidden*/
} }
@ -1514,11 +1606,6 @@ textarea {
display: none; display: none;
} }
.main-navigation .main-navigation-content,
.secondary-navigation .main-navigation-content {
display: inline-block;
}
.main-navigation ul, .main-navigation ul,
.secondary-navigation ul { .secondary-navigation ul {
display: flex; display: flex;
@ -1532,33 +1619,34 @@ textarea {
border-radius: 0.2em; border-radius: 0.2em;
} }
.main-navigation ul ul.sub-menu, .main-navigation ul .sub-menu,
.secondary-navigation ul ul.sub-menu { .secondary-navigation ul .sub-menu {
float: left; float: left;
position: absolute; position: absolute;
top: 100%; top: 100%;
left: -999em; left: -999em;
z-index: 99999; z-index: 99999;
padding: 0.5rem; padding-top: 0.5rem;
padding-left: 1rem;
} }
.main-navigation ul ul.sub-menu ul, .main-navigation ul .sub-menu ul,
.secondary-navigation ul ul.sub-menu ul { .secondary-navigation ul .sub-menu ul {
left: -999em; left: -999em;
top: 0; top: 0;
} }
.main-navigation ul ul.sub-menu li:hover > ul, .main-navigation ul .sub-menu li:hover > ul,
.main-navigation ul ul.sub-menu li.focus > ul, .main-navigation ul .sub-menu li.focus > ul,
.secondary-navigation ul ul.sub-menu li:hover > ul, .secondary-navigation ul .sub-menu li:hover > ul,
.secondary-navigation ul ul.sub-menu li.focus > ul { .secondary-navigation ul .sub-menu li.focus > ul {
display: block; display: block;
left: 4em; left: 4em;
top: 3em; top: 3em;
} }
.main-navigation ul ul.sub-menu a, .main-navigation ul .sub-menu a,
.secondary-navigation ul ul.sub-menu a { .secondary-navigation ul .sub-menu a {
display: flex; display: flex;
align-items: center; align-items: center;
min-height: 100%; min-height: 100%;
@ -1567,7 +1655,6 @@ textarea {
.main-navigation ul li, .main-navigation ul li,
.secondary-navigation ul li { .secondary-navigation ul li {
position: relative;
padding: 1em; padding: 1em;
} }
@ -1578,15 +1665,6 @@ textarea {
left: auto; left: auto;
} }
.main-navigation ul a,
.secondary-navigation ul a {
display: flex;
align-items: center;
min-height: 100%;
text-decoration: none;
font-size: 1rem;
}
.main-navigation { .main-navigation {
padding-bottom: 1em; padding-bottom: 1em;
} }
@ -2122,7 +2200,7 @@ textarea {
cursor: pointer; cursor: pointer;
font-weight: 900; font-weight: 900;
font-size: 0.9rem; font-size: 0.9rem;
border: 0.05em solid #000; border: 1px solid #000;
} }
.xarxaprod-titol-opcions::after { .xarxaprod-titol-opcions::after {
@ -2424,170 +2502,149 @@ textarea {
/* Contact Form 7 /* Contact Form 7
--------------------------------------------- */ --------------------------------------------- */
@media screen {
/* contact forms styles used in wp backend with CF7 */ /* contact forms styles used in wp backend with CF7 */
.wpcf7-not-valid:not(:focus) { .wpcf7-not-valid:not(:focus) {
background-color: #ff686e; background-color: #ff686e;
}
.wpcf7-not-valid-tip {
color: #ff686e;
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
border-color: #f6cc4c;
background-color: #f6cc4c;
color: #fff;
font-family: "Neue Haas Grotesk Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
font-weight: 700;
text-align: center;
margin: 0;
padding: 0;
}
.wpcf7-form .wpcf7-submit {
margin-left: 1rem;
}
.wpcf7-form .wpcf7-spinner {
margin: 0 -24px 0 0;
}
.wpcf7-list-item-label {
margin: 0 0.3rem;
}
.wpcf7-form input:not([type="submit"]),
.wpcf7-form textarea {
background: transparent;
border: 0.05em solid #000;
padding: 1em;
}
/* styles applied if written in wp backend
* class="contactform contactform-WHATEVER"
* */
.contactform {
margin-bottom: 1rem;
}
.contactform br {
display: none;
}
.contactform p {
display: block;
break-inside: avoid-column;
margin-top: 0;
}
.contactform .break-after-column,
.contactform .saltar-columna {
break-after: column;
}
.contactform-consultoria .contactform-name,
.contactform-consultoria .contactform-email {
max-width: 40%;
display: inline-block;
}
.contactform-consultoria .contactform-name {
float: left;
}
.contactform-consultoria .contactform-email {
float: right;
margin-bottom: 1rem;
}
.contactform-acceptance {
display: flex;
align-items: center;
justify-content: end;
}
.contactform-fund-info {
display: inline-block;
column-count: 1;
column-gap: 1rem;
width: 100%;
}
.contactform-fund-info .contactform-descripcio textarea {
display: inline-block;
min-height: 23.5em;
}
.contactform-fund-options {
display: flex;
flex-direction: column;
justify-content: space-between;
}
.contactform-fund-options p {
display: inline-block;
}
.contactform-fund-options label.oficinasuport-titol-opcions {
border: 0.05em solid #000;
width: 100%;
display: inline-block;
margin-bottom: 1em;
}
.contactform-fund-options .wpcf7-list-item {
display: block;
}
.contactform-fund-options .wpcf7-list-item label {
display: flex;
flex-direction: row-reverse;
justify-content: left;
}
.contactform-fund-options .wpcf7-form-control-wrap[data-name="oferta-data-start"],
.contactform-fund-options .wpcf7-form-control-wrap[data-name="oferta-data-end"] {
display: block;
}
.contactform-fund-options .wpcf7-form-control-wrap[data-name="oferta-data-start"] input[type="date"],
.contactform-fund-options .wpcf7-form-control-wrap[data-name="oferta-data-end"] input[type="date"] {
width: auto;
background-color: #fff;
}
.contactform-fund-options .wpcf7-form-control-wrap[data-name="oferta-data-start"]::before,
.contactform-fund-options .wpcf7-form-control-wrap[data-name="oferta-data-end"]::before {
display: inline-block;
width: 2rem;
}
.contactform-fund-options .wpcf7-form-control-wrap[data-name="oferta-data-start"]::before {
content: "inici: ";
}
.contactform-fund-options .wpcf7-form-control-wrap[data-name="oferta-data-end"]::before {
content: "fi: ";
}
} }
@media screen and (min-width: 48em) { .wpcf7-not-valid-tip {
color: #ff686e;
}
.wpcf7-form { .wpcf7 form.invalid .wpcf7-response-output,
text-align: center; .wpcf7 form.unaccepted .wpcf7-response-output,
} .wpcf7 form.payment-required .wpcf7-response-output {
border-color: #f6cc4c;
background-color: #f6cc4c;
color: #fff;
font-family: "Neue Haas Grotesk Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
font-weight: 700;
text-align: center;
margin: 0;
padding: 0;
}
.contactform-fund-info { .wpcf7-form .wpcf7-submit {
column-count: 2; margin-left: 1rem;
} }
.contactform-fund-options { .wpcf7-form .wpcf7-spinner {
flex-direction: row; margin: 0 -24px 0 0;
} }
.wpcf7-list-item-label {
margin: 0 0.3rem;
}
.wpcf7-form {
text-align: center;
}
.wpcf7-form input:not([type="submit"]),
.wpcf7-form textarea {
background: transparent;
border: 0.1em solid #000;
padding: 1em;
}
/* styles applied if written in wp backend
* class="contactform contactform-WHATEVER"
* */
.contactform {
margin-bottom: 1rem;
}
.contactform br {
display: none;
}
.contactform p {
display: block;
break-inside: avoid-column;
margin-top: 0;
}
.contactform .break-after-column,
.contactform .saltar-columna {
break-after: column;
}
.contactform-consultoria .contactform-name,
.contactform-consultoria .contactform-email {
max-width: 40%;
display: inline-block;
}
.contactform-consultoria .contactform-name {
float: left;
}
.contactform-consultoria .contactform-email {
float: right;
margin-bottom: 1rem;
}
.contactform-acceptance {
display: flex;
align-items: center;
justify-content: end;
}
.contactform-fund-info {
display: inline-block;
column-count: 2;
column-gap: 1rem;
width: 100%;
}
.contactform-fund-info .contactform-descripcio textarea {
display: inline-block;
min-height: 15.5em;
}
.contactform-fund-options {
display: flex;
justify-content: space-between;
}
.contactform-fund-options p {
display: inline-block;
}
.contactform-fund-options .wpcf7-list-item {
display: block;
}
.contactform-fund-options .wpcf7-list-item label {
display: flex;
flex-direction: row-reverse;
justify-content: left;
}
.contactform-fund-options .wpcf7-form-control-wrap[data-name="oferta-data-start"],
.contactform-fund-options .wpcf7-form-control-wrap[data-name="oferta-data-end"] {
display: block;
}
.contactform-fund-options .wpcf7-form-control-wrap[data-name="oferta-data-start"] input[type="date"],
.contactform-fund-options .wpcf7-form-control-wrap[data-name="oferta-data-end"] input[type="date"] {
width: auto;
background-color: #fff;
}
.contactform-fund-options .wpcf7-form-control-wrap[data-name="oferta-data-start"]::before,
.contactform-fund-options .wpcf7-form-control-wrap[data-name="oferta-data-end"]::before {
display: inline-block;
width: 2rem;
}
.contactform-fund-options .wpcf7-form-control-wrap[data-name="oferta-data-start"]::before {
content: "inici: ";
}
.contactform-fund-options .wpcf7-form-control-wrap[data-name="oferta-data-end"]::before {
content: "fi: ";
} }
/* Guttenslider /* Guttenslider

File diff suppressed because one or more lines are too long