Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions site/assets/scss/components/_forms.scss
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
background-color: var(--primary);
border-color: var(--primary);
}

&:focus {
border-color: var(--primary);
box-shadow: none;
Expand All @@ -37,15 +37,16 @@
background-color: transparent;
background-clip: padding-box;
border-color: $AC-Blue;
border-color: var(--primary);
border-color: var(--primary-light);
border-top: 0;
border-left: 0;
border-right: 0;
border-radius: 0;
box-shadow: none !important;
transition: border-color 0.15s ease-in-out, border-width 0.15s ease-in-out;

&:focus {
border-width: 2px;
//border-width: 2px;
border-color: $AC-Blue;
border-color: var(--primary);
}
Expand Down
8 changes: 4 additions & 4 deletions site/layouts/contact/list.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@


<section class="section contact-form my-5">
<div class="container">
<div class="container-fluid">
<div class="row">

<div class="col-lg-9 offset-lg-3">
<div class="col-lg-8 offset-lg-2">

<div class="form-wrap">
<form id="contactform" name="{{ site.Params.netlifyForms.contact }}" method="POST" data-netlify="true" data-netlify-honeypot="bot-field" >
Expand Down Expand Up @@ -46,12 +46,12 @@
<textarea name="message" id="nachricht" class="form-control form-control-lg mb-4"
placeholder="{{ i18n "nachricht" }}"></textarea>

<div class="form-check form-check mb-4">
<div class="form-check form-check mb-6 mb-lg-16">
<input type="checkbox" class="form-check-input" id="agb_check_contact" required>
<label class="form-check-label small" for="agb_check_contact">{{ i18n "agb_check_contact" | safeHTML }}</label>
</div>

<button type="submit" class="btn btn-outline-primary py-3 px-5 ">{{ i18n "send" }}</button>
<button type="submit" class="btn btn-outline-primary py-3 px-10 ">{{ i18n "send" }}</button>
</form>
<div class="message-success d-none">{{ i18n "messageSuccess" }}</div>
<div class="message-error d-none">{{ i18n "messageError" }}</div>
Expand Down
Loading