-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
170 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,4 +30,4 @@ jobs: | |
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
publish_dir: ./output | ||
cname: larsp.dev | ||
cname: larsp.de |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,124 @@ | ||
--- | ||
layout: page | ||
title: Contact | ||
--- | ||
|
||
# Contact | ||
|
||
<form id="fs-frm" name="simple-contact-form" accept-charset="utf-8" action="https://formspree.io/f/mrgnozoy" method="post"> | ||
<fieldset id="fs-frm-inputs"> | ||
<label for="full-name">Full Name</label> | ||
<input type="text" name="name" id="full-name" placeholder="First and Last" required=""> | ||
<label for="email-address">Email Address</label> | ||
<input type="email" name="_replyto" id="email-address" placeholder="[email protected]" required=""> | ||
<label for="message">Message</label> | ||
<textarea rows="5" name="message" id="message" placeholder="Your message" required=""></textarea> | ||
<input type="hidden" name="_subject" id="email-subject" value="Contact Form Submission"> | ||
</fieldset> | ||
<input type="submit" value="Submit"> | ||
</form><style>/* reset */ | ||
#fs-frm input, | ||
#fs-frm select, | ||
#fs-frm textarea, | ||
#fs-frm fieldset, | ||
#fs-frm optgroup, | ||
#fs-frm label, | ||
#fs-frm #card-element:disabled { | ||
color: inherit; | ||
border: none; | ||
border-radius: 0; | ||
display: block; | ||
width: 100%; | ||
padding: 0; | ||
margin: 0; | ||
-webkit-appearance: none; | ||
-moz-appearance: none; | ||
} | ||
#fs-frm label, | ||
#fs-frm legend, | ||
#fs-frm ::placeholder { | ||
font-size: .825rem; | ||
margin-bottom: .5rem; | ||
padding-top: .2rem; | ||
display: flex; | ||
align-items: baseline; | ||
} | ||
|
||
/* border, padding, margin, width */ | ||
#fs-frm input, | ||
#fs-frm select, | ||
#fs-frm textarea, | ||
#fs-frm #card-element { | ||
border: 1px solid rgba(0,0,0,0.2); | ||
background-color: rgba(255,255,255,0.9); | ||
padding: .75em 1rem; | ||
margin-bottom: 1.5rem; | ||
} | ||
#fs-frm input:focus, | ||
#fs-frm select:focus, | ||
#fs-frm textarea:focus { | ||
background-color: white; | ||
outline-style: solid; | ||
outline-width: thin; | ||
outline-color: gray; | ||
outline-offset: -1px; | ||
} | ||
#fs-frm [type="text"], | ||
#fs-frm [type="email"] { | ||
width: 100%; | ||
} | ||
#fs-frm [type="button"], | ||
#fs-frm [type="submit"], | ||
#fs-frm [type="reset"] { | ||
width: auto; | ||
cursor: pointer; | ||
-webkit-appearance: button; | ||
-moz-appearance: button; | ||
appearance: button; | ||
} | ||
#fs-frm [type="button"]:focus, | ||
#fs-frm [type="submit"]:focus, | ||
#fs-frm [type="reset"]:focus { | ||
outline: none; | ||
} | ||
#fs-frm [type="submit"], | ||
#fs-frm [type="reset"] { | ||
margin-bottom: 0; | ||
} | ||
#fs-frm select { | ||
text-transform: none; | ||
} | ||
|
||
#fs-frm [type="checkbox"] { | ||
-webkit-appearance: checkbox; | ||
-moz-appearance: checkbox; | ||
appearance: checkbox; | ||
display: inline-block; | ||
width: auto; | ||
margin: 0 .5em 0 0 !important; | ||
} | ||
|
||
#fs-frm [type="radio"] { | ||
-webkit-appearance: radio; | ||
-moz-appearance: radio; | ||
appearance: radio; | ||
} | ||
|
||
/* address, locale */ | ||
#fs-frm fieldset.locale input[name="city"], | ||
#fs-frm fieldset.locale select[name="state"], | ||
#fs-frm fieldset.locale input[name="postal-code"] { | ||
display: inline; | ||
} | ||
#fs-frm fieldset.locale input[name="city"] { | ||
width: 52%; | ||
} | ||
#fs-frm fieldset.locale select[name="state"], | ||
#fs-frm fieldset.locale input[name="postal-code"] { | ||
width: 20%; | ||
} | ||
#fs-frm fieldset.locale input[name="city"], | ||
#fs-frm fieldset.locale select[name="state"] { | ||
margin-right: 3%; | ||
} | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters