This commit is contained in:
Jonas Heinrich 2022-03-13 16:44:32 +01:00
parent 8914b1517d
commit 772cd21022
2 changed files with 47 additions and 2 deletions

1
files/bulma.css vendored
View file

@ -3317,6 +3317,7 @@ fieldset[disabled] .button {
body > .container { body > .container {
padding-top: 30px; padding-top: 30px;
flex-grow: 1; flex-grow: 1;
width: 100%;
} }
.container { .container {

View file

@ -23,8 +23,9 @@ body {
} }
a:hover { a:hover {
color: #1851B4; color: var(--themeColor);
text-decoration: underline text-decoration: underline;
filter: brightness(120%);
} }
.content p, p { .content p, p {
@ -34,6 +35,14 @@ a:hover {
margin-bottom: 10px; margin-bottom: 10px;
} }
p a:not(.button), label a {
color: var(--themeColor) !important;
}
p a:not(.button):hover, label a:hover {
filter: brightness(120%);
}
h1 { h1 {
font-size: 60px; font-size: 60px;
font-weight: 800; font-weight: 800;
@ -133,6 +142,41 @@ a.no-underline {
color: white !important; color: white !important;
} }
.mailpoet_submit, .wp-block-button__link {
background-color: var(--themeColor);
text-shadow: none;
border: none;
border-radius: 8px;
color: #fff;
font-family: BlinkMacSystemFont, -apple-system, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: 600 !important;
text-decoration: none;
padding: 10px 15px !important;
font-size: 14px;
}
.mailpoet_submit:hover, .wp-block-button__link:hover {
filter: brightness(120%);
}
.mailpoet_text {
padding: 10px !important;
}
.contact-form label {
font-weight: 500;
}
.contact-form label.textarea {
min-height: unset !important;
border: 0;
padding-left: 0;
}
.contact-form input[type="email"], .contact-form input[type="tel"], .contact-form input[type="text"], .contact-form input[type="url"] {
padding: 10px 7px;
}
@media screen and (max-width: 1024px) { @media screen and (max-width: 1024px) {
.rentButton { .rentButton {
margin: 5px 10px; margin: 5px 10px;