Skip to content

Commit

Permalink
Add styles.css
Browse files Browse the repository at this point in the history
  • Loading branch information
shubhdevv committed Jul 18, 2023
1 parent 2865015 commit f52ec1d
Showing 1 changed file with 159 additions and 0 deletions.
159 changes: 159 additions & 0 deletions styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,159 @@
:root{
--color: #90EE90;
--txt: rgb(185, 185, 185)

}

*{
margin: 0px;
padding: 0px;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
color: var(--txt);
}

.sign-up {
width: 100vw;
height: 100vh;
}

.sign-up,
.logo{
display: flex;
flex-flow: row wrap;
}


.picture{
background-image: url(./halie-west-25xggax4bSA-unsplash.jpg);
background-position: center;
background-size: auto;
background-repeat: no-repeat;
width: 40vw;
}


.logo{
height: auto;
background-color: rgba(0, 0, 0, 0.7);
position: relative;
top: 20vh;
gap: 1vw;
padding: 15px 0;

justify-content: center;
align-items: center;
}

h1{
color: white;
}

.deer {
height: 10vh;
}



.right{
width: 60vw;
background-color: #000000;
display: flex;
flex-flow: column nowrap;
justify-content: center;


}

.left{
padding-left: 3vw;
}

.dummy-text{
font-weight: 500;
width: 90%;
font-size: 1.2rem;
}

.remote-text{
margin: 40px 0 80px;
}


.form{
background-color: rgb(6, 6, 6);
box-shadow: 0 10px 20px -2px rgb(22, 22, 22);
display: flex;
flex-flow: row wrap;
gap: 20px;
padding-top: 20px;
padding-bottom: 20px;
}

.input{
display: flex;
flex-flow: column wrap;
width: 40%;
font-size: 0.7rem;
text-transform: uppercase;
opacity: 50%;
}

.form-title{
width: 100%;
font-size: 1.2rem;
font-weight: 500;
}

input{
background-color: rgb(2, 2, 2);
border: 1px solid rgb(77, 77, 77);
border-radius: 3px;
}

input:focus{
outline: none;
border: 2px solid var(--color);
}

button{
background-color: rgba(0, 0, 0, 0);
color: var(--color);
font-weight: 700;
font-size: 1.2em;
border: 2px solid var(--color);
border-radius: 5px;
padding: 10px 40px;
margin: 40px 0;
}

button:hover{
background-color: var(--color);
color: black;

}

.log-in{
display: flex;
gap: 5px;
}

a{
text-decoration: none;
color: var(--color);
font-weight: 700;
}

a:hover{
color: white;
}










0 comments on commit f52ec1d

Please sign in to comment.