redo main/register page
This commit is contained in:
1 parent
eaa2febbf2
commit
1ad5eb654b
400 files changed
+93168
-323
No files matched your search
@@ -0,0 +1,192 @@
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
*, *:after, *:before {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
body {
|
||||
background: #A0A9CC;
|
||||
color: #fff;
|
||||
font-size: 1.5em;
|
||||
font-family: "HelveticaNeue-Light", "Helvetica Neue Light", sans-serif;
|
||||
font-weight: 100;
|
||||
text-align: center;
|
||||
}
|
||||
.container {
|
||||
background: #B7BED8;
|
||||
color: #6A79A6;
|
||||
display: inline-block;
|
||||
padding: 0em 2em;
|
||||
margin: 6em auto;
|
||||
box-shadow: 0 50px 50px rgba(0,0,0,0.2);
|
||||
}
|
||||
.container .navigation {
|
||||
text-align: left;
|
||||
}
|
||||
.container .navigation ol {
|
||||
list-style: none;
|
||||
background: #B7BED8;
|
||||
position: absolute;
|
||||
padding: 30px 0;
|
||||
width: 600px;
|
||||
z-index: 100;
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
.container .navigation ol li {
|
||||
display: inline-block;
|
||||
margin-right: 27px;
|
||||
font-size: 0.7em;
|
||||
max-width: 20%;
|
||||
text-align: left;
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
.container .navigation ol li a {
|
||||
color: #fff;
|
||||
text-decoration: none;
|
||||
position: relative;
|
||||
z-index: 2;
|
||||
cursor: pointer;
|
||||
opacity: 0;
|
||||
}
|
||||
.container .navigation ol li a.done {
|
||||
opacity: 1;
|
||||
}
|
||||
.container .sign-form {
|
||||
width: 600px;
|
||||
text-align: left;
|
||||
margin: 85px 0 0 0;
|
||||
}
|
||||
.container .sign-form #next-page {
|
||||
opacity: 0;
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
display: inline-block;
|
||||
vertical-align: middle;
|
||||
margin-left: 20px;
|
||||
background: url("https://jdniki.github.io/signup/images/next-page.svg");
|
||||
background-size: contain;
|
||||
}
|
||||
.container .sign-form #next-page:hover {
|
||||
background: url("https://jdniki.github.io/signup/images/next-pagehover.svg");
|
||||
background-size: contain;
|
||||
}
|
||||
.container .sign-form .questions {
|
||||
list-style: none;
|
||||
-webkit-transition: height 0.4s;
|
||||
transition: height 0.4s;
|
||||
width: 88%;
|
||||
display: inline-block;
|
||||
height: 80px;
|
||||
}
|
||||
.container .sign-form .questions li {
|
||||
position: absolute;
|
||||
width: 500px;
|
||||
}
|
||||
.container .sign-form .questions li span {
|
||||
display: block;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
.container .sign-form .questions li input {
|
||||
width: 100%;
|
||||
font-size: .9em;
|
||||
color: #f2f2f2;
|
||||
margin: 0.3em 0 1em 0;
|
||||
border: none;
|
||||
background: none;
|
||||
border-bottom: 3px solid #fff;
|
||||
padding: 0.5em 0.1em;
|
||||
transition: all 0.5s ease;
|
||||
}
|
||||
.container .sign-form .questions li input:focus {
|
||||
outline: none;
|
||||
border-bottom: 3px solid #6A79A6;
|
||||
}
|
||||
.container .sign-form .questions li:not(:first-child) {
|
||||
opacity: 0;
|
||||
margin-top: 150px;
|
||||
}
|
||||
.container .sign-form .questions li #viewpswd {
|
||||
position: absolute;
|
||||
opacity: 0;
|
||||
}
|
||||
.container .sign-form .questions li #show-pwd {
|
||||
margin: -2.75em 0em;
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
position: absolute;
|
||||
right: 0;
|
||||
color: rgba(255,255,255,0.4);
|
||||
cursor: pointer;
|
||||
}
|
||||
.container .sign-form .questions li #show-pwd.view {
|
||||
background: url("https://jdniki.github.io/signup/images/view.svg");
|
||||
background-size: contain;
|
||||
}
|
||||
.container .sign-form .questions li #show-pwd.hide {
|
||||
background: url("https://jdniki.github.io/signup/images/hide.svg");
|
||||
background-size: contain;
|
||||
}
|
||||
.container .sign-form .questions li #show-pwd:active, .container .sign-form .questions li #show-pwd:focus {
|
||||
background: url("https://jdniki.github.io/signup/images/hide.svg");
|
||||
background-size: contain;
|
||||
}
|
||||
.container .sign-form .questions li select.country {
|
||||
position: absolute;
|
||||
width: 4.5em;
|
||||
font-size: 0.7em;
|
||||
color: #f2f2f2;
|
||||
height: 70px;
|
||||
background: transparent;
|
||||
border: 1px solid #ccc;
|
||||
-webkit-appearance: none;
|
||||
-moz-appearance: none;
|
||||
appearance: none;
|
||||
border: none;
|
||||
}
|
||||
.container .sign-form .questions li #phone {
|
||||
padding-left: 5em;
|
||||
}
|
||||
.container .error-message {
|
||||
color: rgba(207,0,0,0.56);
|
||||
font-size: 14px;
|
||||
margin-top: 10px;
|
||||
padding-bottom: 30px;
|
||||
background: #B7BED8;
|
||||
}
|
||||
::-webkit-input-placeholder {
|
||||
font-size: 0.9em;
|
||||
color: rgba(255,255,255,0.7);
|
||||
}
|
||||
:-moz-placeholder {
|
||||
font-size: 0.9em;
|
||||
color: rgba(255,255,255,0.7);
|
||||
}
|
||||
::-moz-placeholder {
|
||||
font-size: 0.9em;
|
||||
color: rgba(255,255,255,0.7);
|
||||
}
|
||||
:-ms-input-placeholder {
|
||||
font-size: 0.9em;
|
||||
color: rgba(255,255,255,0.7);
|
||||
}
|
||||
@-webkit-keyframes moveUpFromDown {
|
||||
from {
|
||||
-webkit-transform: translateY(100%);
|
||||
}
|
||||
to {
|
||||
-webkit-transform: translateY(0);
|
||||
}
|
||||
}
|
||||
@keyframes moveUpFromDown {
|
||||
from {
|
||||
-webkit-transform: translateY(100%);
|
||||
transform: translateY(100%);
|
||||
}
|
||||
to {
|
||||
-webkit-transform: translateY(0);
|
||||
transform: translateY(0);
|
||||
}
|
||||
}
|
||||
+2
-84
@@ -5,7 +5,7 @@
|
||||
--black: #191b17;
|
||||
--transition: all 0.5s ease-in-out;
|
||||
}
|
||||
*{
|
||||
body {
|
||||
font-family: 'Hind Siliguri', sans-serif;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
@@ -74,7 +74,7 @@ section{
|
||||
|
||||
/* header */
|
||||
.header{
|
||||
background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.7)), url(../assets/header-bg.jpg);
|
||||
background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.7)), url(../images/header-bg.jpg);
|
||||
min-height: 100vh;
|
||||
background-position: center;
|
||||
background-size: cover;
|
||||
@@ -238,37 +238,6 @@ section{
|
||||
border-radius: 2px;
|
||||
margin-right: 1.4rem;
|
||||
}
|
||||
/* video */
|
||||
.video{
|
||||
background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.7)), url(../assets/video-bg.jpg);
|
||||
background-size: cover;
|
||||
background-position: center;
|
||||
background-attachment: fixed;
|
||||
background-repeat: no-repeat;
|
||||
color: #fff;
|
||||
text-align: center;
|
||||
}
|
||||
.video a{
|
||||
font-size: 2.2rem;
|
||||
color: #fff;
|
||||
width: 65px;
|
||||
height: 65px;
|
||||
border-radius: 50%;
|
||||
background-color: var(--mount-meadow);
|
||||
padding-left: 7px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
.video h2{
|
||||
font-size: 2rem;
|
||||
color: var(--white-smoke);
|
||||
padding: 1.2rem 0;
|
||||
}
|
||||
.video p{
|
||||
font-size: 1.1rem;
|
||||
letter-spacing: 1px;
|
||||
color: var(--white-smoke);
|
||||
opacity: 0.7;
|
||||
}
|
||||
|
||||
/* team */
|
||||
.team .row{
|
||||
@@ -390,48 +359,6 @@ section{
|
||||
opacity: 0.7;
|
||||
}
|
||||
|
||||
/* testimonial */
|
||||
.testimonial{
|
||||
background-image: linear-gradient(rgba(27, 188, 156, 0.8), rgba(27, 188, 156, 0.9)), url(../assets/testimonial-bg.jpg);
|
||||
background-size: cover;
|
||||
background-repeat: no-repeat;
|
||||
background-position: center;
|
||||
background-attachment: fixed;
|
||||
}
|
||||
.testimonial .title h2,
|
||||
.testimonial .title{
|
||||
color: #fff;
|
||||
}
|
||||
.testimonial .row{
|
||||
margin-top: 2rem;
|
||||
}
|
||||
.testimonial-img{
|
||||
border: 4px solid #fff;
|
||||
width: 120px;
|
||||
height: 120px;
|
||||
border-radius: 50%;
|
||||
margin: 2.5rem auto;
|
||||
padding: 0.5rem;
|
||||
}
|
||||
.testimonial-img img{
|
||||
border-radius: 50%;
|
||||
}
|
||||
.testimonial-item{
|
||||
text-align: center;
|
||||
}
|
||||
.testimonial-item p{
|
||||
font-size: 1.3rem;
|
||||
color: var(--white-smoke);
|
||||
line-height: 1.7;
|
||||
}
|
||||
.testimonial-item span{
|
||||
margin-top: 0.7rem;
|
||||
display: block;
|
||||
font-size: 1.1rem;
|
||||
color: #fff;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
/* contact */
|
||||
.contact .row{
|
||||
margin-top: 2rem;
|
||||
@@ -513,15 +440,6 @@ section{
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
/* #### Media Queries #### */
|
||||
|
||||
@media screen and (min-width: 768px){
|
||||
|
||||
Reference in new issue
Block a user