Skip to content
Snippets Groups Projects
Commit 8ee69512 authored by Planoetscher Daniel (Student Com20)'s avatar Planoetscher Daniel (Student Com20)
Browse files

landing page now totally restored with adjustments

parent 3d6c8d90
No related branches found
No related tags found
1 merge request!2WIP: Using react
@use 'styles/settings.scss' as s;
@use 'styles/mixins.scss' as mx;
.input-field {
position: relative;
margin: 20px 0 30px 0;
......@@ -28,7 +31,7 @@
font-size: 16px;
position: absolute;
left: 20px;
font-weight: var(--weight-bold);
font-weight: s.$weight-bold;
z-index: 20;
transform: translateY(-50%);
......@@ -36,6 +39,7 @@
textarea {
resize: none;
height: 300px;
}
input,
......@@ -50,8 +54,8 @@
display: block;
border-radius: 15px;
color: #fff;
font-weight: var(--weight-regular);
font-family: 'Poppins', sans-serif;
font-weight: s.$weight-regular;
font-family: s.$body-font;
background: rgba(255, 255, 255, 0.1);
}
}
......@@ -20,7 +20,7 @@ body {
position: relative;
background: linear-gradient(to left, #e2e2e2 0%, #e6e6e6 100%);
@include mx.breakpoint(large) {
@include mx.breakpoint(xlarge) {
padding: 5rem 0;
}
}
......
......@@ -69,7 +69,7 @@ header {
height: calc(100vh - 0.5rem);
}
@include mx.breakpoint(large) {
@include mx.breakpoint(xlarge) {
height: calc(100vh - 6rem);
}
......
import Project from 'components/ui/Project';
import ButtonLink from 'components/ui/ButtonLink';
import Button from 'components/ui/Button';
import TextInput from 'components/ui/TextInput';
import './home.scss';
import Logo from 'images/logo.svg';
......@@ -149,6 +150,11 @@ export default function Home() {
to help you resolve the issue.
</p>
<form className="contact-form" action="mailto:dplanoetscher@unibz.it" method="GET">
<TextInput label="Fistname" name="firstname" />
<TextInput label="Lastname" name="lastname" />
<TextInput label="Email" name="email" type="email" />
<TextInput label="Subject" name="subject" />
<TextInput label="Message" name="message" type="textarea" />
<div className="button-container">
<Button type="submit">Send</Button>
</div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment