Changes on Contact page

This commit is contained in:
apapachristou 2020-05-28 19:47:25 +03:00
parent 48a17b6d55
commit 0d34656fe0
3 changed files with 240 additions and 158 deletions

View File

@ -31,9 +31,9 @@
<div id="aboutDropdown" class="dropdown-content"> <div id="aboutDropdown" class="dropdown-content">
<div class="dropdown-top"></div> <div class="dropdown-top"></div>
<div class="dropdown-options"> <div class="dropdown-options">
<a href="#howItWorks">How it works</a> <a href="about/how-it-works.html">How it works</a>
<a href="#roadmap">Roadmap</a> <a href="https://trello.com/b/x49lylnK/argos" target="_blank">Roadmap</a>
<a href="#faqs">faqs</a> <a href="about/faqs.html">faqs</a>
</div> </div>
</div> </div>
</li> </li>
@ -42,9 +42,9 @@
<div id="resourcesDropdown" class="dropdown-content"> <div id="resourcesDropdown" class="dropdown-content">
<div class="dropdown-top"></div> <div class="dropdown-top"></div>
<div class="dropdown-options"> <div class="dropdown-options">
<a href="#mediaKit">Media kit</a> <a href="resources/media-kit.html">Media kit</a>
<a href="#userGuide">User Guide</a> <a href="resources/user-guide.html">User Guide</a>
<a href="#coBranding">Co-branding</a> <a href="resources/co-branding.html">Co-branding</a>
</div> </div>
</div> </div>
</li> </li>
@ -58,10 +58,10 @@
<section class="page-section contact" id="contact"> <section class="page-section contact" id="contact">
<div class="container"> <div class="container">
<div class="col "> <div class="col ">
<div class="contact-title">Contact</div> <div class="page-title">Contact</div>
</div> </div>
<div class="main-contact"> <div class="main-contact">
<div class="col contact-subtitle"><div>Contact us to learn more</div></div> <div class="col page-subtitle"><div>Contact us to learn more</div></div>
<div class="col required"><div>* Required fields</div></div> <div class="col required"><div>* Required fields</div></div>
<form class="form"> <form class="form">
<!-- Full Name --> <!-- Full Name -->

View File

@ -1,23 +1,3 @@
.contact-title {
text-align: center;
font-weight: 700;
font-size: 2.375rem;
font-family: 'Roboto', sans-serif;
letter-spacing: -0.95px;
color: #212121;
opacity: 1;
}
.contact-subtitle {
text-align: left;
font-weight: 300;
font-size: 2.375rem;
font-family: 'Roboto', sans-serif;
letter-spacing: 0px;
color: #212121;
opacity: 1;
}
.main-contact { .main-contact {
padding: 3rem 16.5rem; padding: 3rem 16.5rem;
} }
@ -39,4 +19,4 @@
font-family: 'Roboto', sans-serif; font-family: 'Roboto', sans-serif;
font-size: 1.12rem; font-size: 1.12rem;
color: #212121; color: #212121;
} }

View File

@ -1,223 +1,325 @@
@import url("https://use.fontawesome.com/releases/v5.13.0/css/all.css");
*, *::before, *::after { *, *::before, *::after {
box-sizing: border-box; box-sizing: border-box;
} }
html { html {
font-family: sans-serif; font-family: sans-serif;
line-height: 1.15; line-height: 1.15;
-webkit-text-size-adjust: 100%; -webkit-text-size-adjust: 100%;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0); -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
} }
body { body {
margin: 0; margin: 0;
font-family: 'Roboto', sans-serif; font-family: 'Roboto', sans-serif;
font-size: 1rem; font-size: 1rem;
line-height: 1.5; line-height: 1.5;
color: #212529; color: #212529;
} }
button:focus { button:focus {
outline: none !important; outline: none !important;
} }
input[type=text], select { input[type=text], select {
width: 100%; width: 100%;
height: 56px; height: 56px;
padding: 16px; padding: 16px;
background: #FAFAFA 0% 0% no-repeat padding-box; background: #FAFAFA 0% 0% no-repeat padding-box;
border: 1px solid #D1D1D1; border: 1px solid #D1D1D1;
border-radius: 4px; border-radius: 4px;
opacity: 1; opacity: 1;
} }
input[type=email], select { input[type=email], select {
width: 100%; width: 100%;
height: 56px; height: 56px;
padding: 16px; padding: 16px;
background: #FAFAFA 0% 0% no-repeat padding-box; background: #FAFAFA 0% 0% no-repeat padding-box;
border: 1px solid #D1D1D1; border: 1px solid #D1D1D1;
border-radius: 4px; border-radius: 4px;
opacity: 1; opacity: 1;
} }
textarea { textarea {
width: 100%; width: 100%;
height: 142px; height: 142px;
padding: 16px; padding: 16px;
background: #FAFAFA 0% 0% no-repeat padding-box; background: #FAFAFA 0% 0% no-repeat padding-box;
border: 1px solid #D1D1D1; border: 1px solid #D1D1D1;
border-radius: 4px; border-radius: 4px;
opacity: 1; opacity: 1;
}
p {
text-align: left;
font-family: 'Roboto', sans-serif;
font-weight: 300;
font-size: 1.25rem;
letter-spacing: 0px;
color: #212121;
}
p a {
color: #23BCBA;
} }
.bootstrap-overrides a { .bootstrap-overrides a {
text-decoration: none; text-decoration: none;
background-color: transparent; background-color: transparent;
} }
.bootstrap-overrides a:hover { .bootstrap-overrides a:hover {
color: #23BCBA; color: #23BCBA;
text-decoration: none; text-decoration: none;
} }
.bootstrap-overrides h1, .bootstrap-overrides h2, .bootstrap-overrides h3, .bootstrap-overrides h4, .bootstrap-overrides h5, .bootstrap-overrides h6, .caption, .placeholder, .body-text, .h1, .h2, .h3, .h4, .h5, .h6 { .bootstrap-overrides h1, .bootstrap-overrides h2, .bootstrap-overrides h3, .bootstrap-overrides h4, .bootstrap-overrides h5, .bootstrap-overrides h6, .caption, .placeholder, .body-text, .h1, .h2, .h3, .h4, .h5, .h6 {
font-family: 'Roboto', sans-serif; font-family: 'Roboto', sans-serif;
color: #212121; color: #212121;
text-align: left; text-align: left;
} }
.bootstrap-overrides h1, .h1 { .bootstrap-overrides h1, .h1 {
font-size: 3.3125rem; font-size: 3.3125rem;
line-height: 4rem; line-height: 4rem;
font-weight: 300; font-weight: 300;
} }
.bootstrap-overrides h2, .h2 { .bootstrap-overrides h2, .h2 {
font-size: 3.16rem; font-size: 3.16rem;
line-height: 3.66rem; line-height: 3.66rem;
font-weight: 300; font-weight: 300;
} }
.bootstrap-overrides h3, .h3 { .bootstrap-overrides h3, .h3 {
font-size: 2.5rem; font-size: 2.5rem;
line-height: 2.83rem; line-height: 2.83rem;
font-weight: 700; font-weight: 700;
} }
.bootstrap-overrides h4, .h4 { .bootstrap-overrides h4, .h4 {
font-size: 1.66rem; font-size: 1.66rem;
line-height: 1.2; line-height: 1.2;
font-weight: 700; font-weight: 700;
} }
.bootstrap-overrides h5, .h5 { .bootstrap-overrides h5, .h5 {
font-size: 1.33rem; font-size: 1.33rem;
line-height: 2.16rem; line-height: 2.16rem;
font-weight: 300; font-weight: 300;
} }
.bootstrap-overrides h6, .h6 { .bootstrap-overrides h6, .h6 {
font-size: 1.66rem; font-size: 1.66rem;
line-height: 1.2; line-height: 1.2;
font-weight: 300; font-weight: 300;
} }
.caption { .caption {
font-size: 1rem; font-size: 1rem;
line-height: 1.66rem; line-height: 1.66rem;
font-weight: 300; font-weight: 300;
} }
.placeholder { .placeholder {
font-size: 1.33rem; font-size: 1.33rem;
line-height: 1.83rem; line-height: 1.83rem;
font-weight: 300; font-weight: 300;
} }
.title-1 { .title-1 {
text-align: left; text-align: left;
font-size: 2.37rem; font-size: 2.37rem;
line-height: 2.75rem; line-height: 2.75rem;
font-family: 'Roboto', sans-serif; font-family: 'Roboto', sans-serif;
font-weight: 300; font-weight: 300;
color: #FFFFFF; color: #FFFFFF;
} }
.title-2 { .title-2 {
text-align: left; text-align: left;
font-size: 2.37rem; font-size: 2.37rem;
line-height: 2.75rem; line-height: 2.75rem;
font-family: 'Roboto', sans-serif; font-family: 'Roboto', sans-serif;
font-weight: 700; font-weight: 700;
color: #FFFFFF; color: #FFFFFF;
} }
.title-3 { .title-3 {
text-align: left; text-align: left;
font-size: 2.37rem; font-size: 2.37rem;
font-family: 'Roboto', sans-serif; font-family: 'Roboto', sans-serif;
font-weight: 300; font-weight: 300;
color: #212121; color: #212121;
opacity: 0.95; opacity: 0.95;
}
.page-title {
text-align: center;
font-weight: 700;
font-size: 2.375rem;
font-family: 'Roboto', sans-serif;
letter-spacing: -0.95px;
color: #212121;
opacity: 1;
}
.page-subtitle {
text-align: left;
font-weight: 300;
font-size: 2.375rem;
font-family: 'Roboto', sans-serif;
letter-spacing: 0px;
color: #212121;
opacity: 1;
} }
.body-text { .body-text {
font-size: 1rem; font-size: 1rem;
line-height: 1.6; line-height: 1.6;
font-weight: 400; font-weight: 400;
opacity: 0.8; opacity: 0.8;
} }
hr { hr {
margin-top: 1rem; margin-top: 1rem;
margin-bottom: 1rem; margin-bottom: 1rem;
border: 0; border: 0;
border-top: 1px solid rgba(0, 0, 0, 0.1); border-top: 1px solid rgba(0, 0, 0, 0.1);
} }
.fixed-top { .fixed-top {
position: fixed !important; position: fixed !important;
top: 0; top: 0;
right: 0; right: 0;
left: 0; left: 0;
z-index: 1030; z-index: 1030;
} }
.container { .container, .container-small {
width: 100%; width: 100%;
padding-right: 0.75rem; padding-right: 0.75rem;
padding-left: 0.75rem; padding-left: 0.75rem;
margin-right: auto; margin-right: auto;
margin-left: auto; margin-left: auto;
z-index: 1; z-index: 1;
} }
.normal-btn { .normal-btn {
width: 162px; min-width: 162px;
height: 40px; max-width: 256px;
cursor: pointer; height: 40px;
background: #129D99 0% 0% no-repeat padding-box; cursor: pointer;
box-shadow: 0px 3px 6px #1E202029; background: #129D99 0% 0% no-repeat padding-box;
border-radius: 30px; box-shadow: 0px 3px 6px #1E202029;
border: none; border-radius: 30px;
color: #FFFFFF; border: none;
opacity: 1; color: #FFFFFF;
opacity: 1;
font-size: 0.87rem;
padding: 0.62rem 1.87rem;
} }
.mirror { .mirror {
-webkit-transform: scaleX(-1); -webkit-transform: scaleX(-1);
transform: scaleX(-1); transform: scaleX(-1);
}
.text-box {
width: 894px;
height: 221px;
background: #FFFFFF 0% 0% no-repeat padding-box;
border: 1px solid #23BCBA;
border-radius: 37px;
opacity: 1;
margin: 3.75rem 0rem;
padding: 3.37rem 4.37rem;
}
.collapse-box {
background: #FFFFFF 0% 0% no-repeat padding-box;
border: 1px solid #D1D1D1;
border-radius: 4px;
opacity: 1;
padding: 1.45rem 1.5rem;
margin: 1rem 0rem;
}
.collapse-title a {
text-align: left;
font-size: 1.25rem;
font-weight: 700;
font-family: 'Roboto', sans-serif;
letter-spacing: 0px;
color: #212121;
opacity: 0.76;
}
.collapse-title a:after {
content: '\f077';
font-family: "Font Awesome 5 Free" !important;
float: right;
font-size: 1rem;
font-weight: 900;
color: black;
}
.collapse-title a.collapsed:after {
content: '\f078';
font-family: "Font Awesome 5 Free";
font-weight: 900;
color: black;
} }
.collapse:not(.show) { .collapse:not(.show) {
display: none; display: none;
}
.faq-content {
text-align: left;
font-weight: 400;
font-size: 1rem;
font-family: 'Roboto', sans-serif;
letter-spacing: 0px;
color: #212121;
opacity: 0.8;
padding-top: 1.5rem;
}
.fa-download {
color: #212121;
opacity: 0.8;
padding-right: .5rem;
} }
@media (min-width: 576px) { @media (min-width: 576px) {
.container { .container {
max-width: 540px; max-width: 540px;
} }
} }
@media (min-width: 768px) { @media (min-width: 768px) {
.container { .container {
max-width: 720px; max-width: 720px;
} }
} }
@media (min-width: 992px) { @media (min-width: 992px) {
.container { .container {
max-width: 960px; max-width: 960px;
} }
.margin-right-6 {
.margin-right-6 { margin-left: 5.8rem;
margin-left: 5.8rem; }
}
} }
@media (min-width: 1244px) { @media (min-width: 1244px) {
.container { .container {
max-width: 1204px !important; max-width: 1204px !important;
} }
.container-small {
max-width: 900px;
}
} }