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 class="dropdown-top"></div>
<div class="dropdown-options">
<a href="#howItWorks">How it works</a>
<a href="#roadmap">Roadmap</a>
<a href="#faqs">faqs</a>
<a href="about/how-it-works.html">How it works</a>
<a href="https://trello.com/b/x49lylnK/argos" target="_blank">Roadmap</a>
<a href="about/faqs.html">faqs</a>
</div>
</div>
</li>
@ -42,9 +42,9 @@
<div id="resourcesDropdown" class="dropdown-content">
<div class="dropdown-top"></div>
<div class="dropdown-options">
<a href="#mediaKit">Media kit</a>
<a href="#userGuide">User Guide</a>
<a href="#coBranding">Co-branding</a>
<a href="resources/media-kit.html">Media kit</a>
<a href="resources/user-guide.html">User Guide</a>
<a href="resources/co-branding.html">Co-branding</a>
</div>
</div>
</li>
@ -58,10 +58,10 @@
<section class="page-section contact" id="contact">
<div class="container">
<div class="col ">
<div class="contact-title">Contact</div>
<div class="page-title">Contact</div>
</div>
<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>
<form class="form">
<!-- 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 {
padding: 3rem 16.5rem;
}

View File

@ -1,3 +1,4 @@
@import url("https://use.fontawesome.com/releases/v5.13.0/css/all.css");
*, *::before, *::after {
box-sizing: border-box;
}
@ -51,6 +52,19 @@ textarea {
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 {
text-decoration: none;
background-color: transparent;
@ -142,6 +156,26 @@ textarea {
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 {
font-size: 1rem;
line-height: 1.6;
@ -164,7 +198,7 @@ hr {
z-index: 1030;
}
.container {
.container, .container-small {
width: 100%;
padding-right: 0.75rem;
padding-left: 0.75rem;
@ -174,7 +208,8 @@ hr {
}
.normal-btn {
width: 162px;
min-width: 162px;
max-width: 256px;
height: 40px;
cursor: pointer;
background: #129D99 0% 0% no-repeat padding-box;
@ -183,6 +218,8 @@ hr {
border: none;
color: #FFFFFF;
opacity: 1;
font-size: 0.87rem;
padding: 0.62rem 1.87rem;
}
.mirror {
@ -190,10 +227,73 @@ hr {
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) {
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) {
.container {
max-width: 540px;
@ -210,7 +310,6 @@ hr {
.container {
max-width: 960px;
}
.margin-right-6 {
margin-left: 5.8rem;
}
@ -220,4 +319,7 @@ hr {
.container {
max-width: 1204px !important;
}
.container-small {
max-width: 900px;
}
}