Minor UI fixes to services page, contact form wiring to meta
This commit is contained in:
parent
bffa8e5bad
commit
00d8f7a874
3 changed files with 16 additions and 17 deletions
|
@ -1,4 +1,4 @@
|
||||||
/* FIXME: this file needs some cleanup */
|
/* FIXME: this file is a mess and needs some cleanup */
|
||||||
|
|
||||||
body {
|
body {
|
||||||
width: 900px;
|
width: 900px;
|
||||||
|
@ -44,7 +44,6 @@ a {
|
||||||
color: #000;
|
color: #000;
|
||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
}
|
}
|
||||||
|
|
||||||
a:hover {
|
a:hover {
|
||||||
color: #000;
|
color: #000;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
|
@ -93,10 +92,10 @@ h2 .service-logo {
|
||||||
}
|
}
|
||||||
|
|
||||||
.service-description {
|
.service-description {
|
||||||
height: 100px;
|
min-height: 100px;
|
||||||
}
|
}
|
||||||
.service-description-large {
|
.service-description-large {
|
||||||
height: 200px;
|
min-height: 200px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#section-hero {
|
#section-hero {
|
||||||
|
|
|
@ -19,12 +19,12 @@
|
||||||
</div>
|
</div>
|
||||||
<div class="col contact-rightpane">
|
<div class="col contact-rightpane">
|
||||||
<h2>Send a message</h2>
|
<h2>Send a message</h2>
|
||||||
<form action="https://meta.recycled.cloud/support">
|
<form method="post" action="https://meta.recycled.cloud/support/new">
|
||||||
<input type="text" name="name" placeholder="Name">
|
<input type="text" name="support_request[name]" placeholder="Name">
|
||||||
<br />
|
<br />
|
||||||
<input type="email" name="email" placeholder="Email">
|
<input type="email" name="support_request[email]" placeholder="Email">
|
||||||
<br />
|
<br />
|
||||||
<textarea name="content" placeholder="Your Message"></textarea>
|
<textarea name="support_request[message]" placeholder="Your Message"></textarea>
|
||||||
<br />
|
<br />
|
||||||
<input type="submit" class="btn btn-green" value="Send">
|
<input type="submit" class="btn btn-green" value="Send">
|
||||||
</form>
|
</form>
|
||||||
|
|
|
@ -9,8 +9,8 @@
|
||||||
</h2>
|
</h2>
|
||||||
<hr />
|
<hr />
|
||||||
|
|
||||||
<div class="row center bottom-20">
|
<div class="row justify-content-md-center center bottom-20">
|
||||||
<div class="col">
|
<div class="col-4">
|
||||||
<h3>Static Website</h3>
|
<h3>Static Website</h3>
|
||||||
|
|
||||||
<p class="service-description-large">
|
<p class="service-description-large">
|
||||||
|
@ -21,7 +21,7 @@
|
||||||
|
|
||||||
<a href="contact.html" class="btn btn-bold btn-green">Contact us</a>
|
<a href="contact.html" class="btn btn-bold btn-green">Contact us</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="col">
|
<div class="col-4">
|
||||||
<h3>Wordpress Website</h3>
|
<h3>Wordpress Website</h3>
|
||||||
|
|
||||||
<p class="service-description-large">
|
<p class="service-description-large">
|
||||||
|
@ -32,7 +32,7 @@
|
||||||
|
|
||||||
<a href="contact.html" class="btn btn-bold btn-green">Contact us</a>
|
<a href="contact.html" class="btn btn-bold btn-green">Contact us</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="col">
|
<div class="col-4">
|
||||||
<h3>Generic PHP</h3>
|
<h3>Generic PHP</h3>
|
||||||
|
|
||||||
<p class="service-description-large">
|
<p class="service-description-large">
|
||||||
|
@ -50,8 +50,8 @@
|
||||||
</h2>
|
</h2>
|
||||||
<hr />
|
<hr />
|
||||||
|
|
||||||
<div class="row center bottom-20">
|
<div class="row justify-content-md-center center bottom-20">
|
||||||
<div class="col">
|
<div class="col-4">
|
||||||
<h3>Borg Backups</h3>
|
<h3>Borg Backups</h3>
|
||||||
|
|
||||||
<p class="service-description">
|
<p class="service-description">
|
||||||
|
@ -61,7 +61,7 @@
|
||||||
|
|
||||||
<a href="contact.html" class="btn btn-bold btn-green">Contact us</a>
|
<a href="contact.html" class="btn btn-bold btn-green">Contact us</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="col">
|
<div class="col-4">
|
||||||
<h3>File Sharing</h3>
|
<h3>File Sharing</h3>
|
||||||
|
|
||||||
<p class="service-description">Nextcloud-based file sharing and syncing.</p>
|
<p class="service-description">Nextcloud-based file sharing and syncing.</p>
|
||||||
|
@ -76,8 +76,8 @@
|
||||||
</h2>
|
</h2>
|
||||||
<hr />
|
<hr />
|
||||||
|
|
||||||
<div class="row center bottom-20">
|
<div class="row justify-content-md-center center bottom-20">
|
||||||
<div class="col">
|
<div class="col-4">
|
||||||
<h3>KVM Virtual Machine</h3>
|
<h3>KVM Virtual Machine</h3>
|
||||||
|
|
||||||
<p class="service-description">
|
<p class="service-description">
|
||||||
|
|
Loading…
Reference in a new issue