small changes
This commit is contained in:
parent
9798ef15a2
commit
05db43e9a8
@ -15,7 +15,6 @@ Tobias Radloff
|
|||||||
c/o Block Services
|
c/o Block Services
|
||||||
Stuttgarter Str. 106
|
Stuttgarter Str. 106
|
||||||
70736 Fellbach
|
70736 Fellbach
|
||||||
|
|
||||||
Email: kontakt [at] tobias-radloff [punkt] de
|
Email: kontakt [at] tobias-radloff [punkt] de
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -276,6 +276,11 @@ h1, h2, h3, h4, h5, h6 {
|
|||||||
flex: 0 1 content;
|
flex: 0 1 content;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.required:after {
|
||||||
|
content: " *";
|
||||||
|
color: red;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/* Main content */
|
/* Main content */
|
||||||
#main-header h1,
|
#main-header h1,
|
||||||
@ -423,6 +428,16 @@ figcaption {
|
|||||||
--pico-font-size: 1.25rem;
|
--pico-font-size: 1.25rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
h3 {
|
||||||
|
--pico-font-size: 1.125rem;
|
||||||
|
margin-top: var(--pico-typography-spacing-vertical);
|
||||||
|
}
|
||||||
|
|
||||||
|
h4 {
|
||||||
|
--pico-font-size: 1rem;
|
||||||
|
margin-top: var(--pico-typography-spacing-vertical);
|
||||||
|
}
|
||||||
|
|
||||||
blockquote {
|
blockquote {
|
||||||
margin-top: 0px;
|
margin-top: 0px;
|
||||||
padding-top: 0px;
|
padding-top: 0px;
|
||||||
|
|||||||
@ -1,19 +1,19 @@
|
|||||||
<form id="contact-form" method="post" action="{{ SITEURL }}/kontakt/contact.php">
|
<form id="contact-form" method="post" action="{{ SITEURL }}/kontakt/contact.php">
|
||||||
<fieldset>
|
<fieldset>
|
||||||
<label>
|
<label>
|
||||||
Name
|
<span class="required">Name</span>
|
||||||
<input name="name" placeholder="Name" autocomplete="given-name" aria-label="Name" required/>
|
<input name="name" placeholder="Dein Name" autocomplete="given-name" aria-label="Name" required/>
|
||||||
</label>
|
</label>
|
||||||
<label>
|
<label>
|
||||||
Email
|
<span class="required">Email</span>
|
||||||
<input type="email" name="email" placeholder="Emailadresse" autocomplete="email" aria-label="Emailadresse" required/>
|
<input type="email" name="email" placeholder="Deine Emailadresse" autocomplete="email" aria-label="Emailadresse" required/>
|
||||||
</label>
|
</label>
|
||||||
<label id="leave-empty">
|
<label id="leave-empty">
|
||||||
Leave this empty
|
Leave this empty
|
||||||
<input name="address" placeholder="Anschrift" autocomplete="address" />
|
<input name="address" placeholder="Anschrift" autocomplete="address" />
|
||||||
</label>
|
</label>
|
||||||
<label>
|
<label>
|
||||||
Nachricht
|
<span class="required">Nachricht</span>
|
||||||
<textarea name="nachricht" placeholder="Deine Nachricht" aria-label="Nachricht" rows="5" required></textarea>
|
<textarea name="nachricht" placeholder="Deine Nachricht" aria-label="Nachricht" rows="5" required></textarea>
|
||||||
</label>
|
</label>
|
||||||
<input type="submit" value="Nachricht senden" />
|
<input type="submit" value="Nachricht senden" />
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user