aboutsummaryrefslogtreecommitdiff
path: root/assets/styles/components/contact-form.scss
diff options
context:
space:
mode:
Diffstat (limited to 'assets/styles/components/contact-form.scss')
-rw-r--r--assets/styles/components/contact-form.scss70
1 files changed, 70 insertions, 0 deletions
diff --git a/assets/styles/components/contact-form.scss b/assets/styles/components/contact-form.scss
new file mode 100644
index 0000000..ef48d1c
--- /dev/null
+++ b/assets/styles/components/contact-form.scss
@@ -0,0 +1,70 @@
+#contact-form {
+ margin: 5% 1.4%;
+}
+
+#contact-form ul {
+ list-style: none;
+ border-radius: 5px;
+ margin-bottom: 40px;
+}
+
+#contact-form li {
+ padding: 10px;
+}
+
+#contact-form li:last-of-type {
+ border-bottom: none;
+}
+
+#contact-form label {
+ display: block;
+ font-size: .8em;
+ color: #999;
+ padding-left: 5px;
+}
+
+#contact-form input, #contact-form textarea {
+ width: 100%;
+ padding: 5px;
+ border: none;
+ resize: vertical;
+ background: transparent;
+ color: #fff;
+ font-weight: bolder;
+}
+
+input:focus {
+ outline: none;
+ border: none;
+}
+
+textarea:focus {
+ outline: none;
+ border: none;
+}
+
+.textarea {
+ border-bottom: 1px solid #dfdfdf;
+}
+
+.send {
+ margin-left: 50px;
+ text-transform: uppercase;
+ padding: 20px 30px;
+ background: transparent;
+ color: #dfdfdf;
+ font-size: 14px;
+ letter-spacing: 2px;
+}
+
+.send:hover {
+ background: #dfdfdf;
+ color: #101010;
+}
+
+@media(max-width: 768px) {
+ #contact-form {
+ margin: 5% -8%;
+ width: 98%;
+ }
+}