Skip to content

Instantly share code, notes, and snippets.

@walidum
Last active August 6, 2021 15:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save walidum/b669d136cf492f465889a4281c9a4380 to your computer and use it in GitHub Desktop.
Save walidum/b669d136cf492f465889a4281c9a4380 to your computer and use it in GitHub Desktop.
style.css
body {
margin: 0;
}
.main {
width: 100%;
height: 95vh;
background-color: #ffffff;
display: flex;
justify-content: center;
align-items: center;
}
.card {
width: 30%;
height: 70%;
border-radius: .2rem;
box-shadow: 0 1px 2px 0 rgba(7, 7, 7, 0.2);
display: flex;
flex-direction: column;
align-items: center;
}
.logo {
margin-top: 1rem;
width: 6rem;
height: 2rem;
}
.card input {
margin-top: 1rem;
border: 1px #686363 solid;
border-radius: .1rem;
height: 1.3rem;
width: 70%;
}
.card input:focus {
outline: none;
border-color: #269eee;
}
.card input::placeholder {
font-size: .6rem;
}
.next {
margin-top: 1rem;
width: 72%;
height: 1.7rem;
border-radius: .2rem;
display: flex;
justify-content: center;
align-items: center;
cursor: pointer;
background-color: #0070ba;
}
.sign-up {
margin-top: 1rem;
width: 72%;
height: 1.7rem;
border-radius: .2rem;
display: flex;
justify-content: center;
align-items: center;
cursor: pointer;
background-color: #E1E7EB;
}
.next span {
color: #ffffff;
font-size: .7rem;
font-weight: bold;
}
.sign-up span {
color: #000000;
font-size: .7rem;
font-weight: bold;
}
.next:hover {
background-color: #0e527f;
}
.divider {
margin-top: 1rem;
width: 72%;
display: flex;
justify-content: space-between;
align-items: center;
}
.left, .right {
border-bottom: solid #686b6d 1px;
width: 45%;
}
.divider span {
font-size: .6rem;
color: #686b6d;
}
.languges {
margin-top: 2rem;
width: 72%;
display: flex;
align-items: center;
}
.flag {
width: .9rem;
height: .6rem;
cursor: pointer;
}
.icon {
margin-left: .2rem;
width: .4rem;
height: .4rem;
transform: rotate(90deg);
cursor: pointer;
}
.languges span {
margin-left: .2rem;
font-size: .5rem;
}
.pipe {
margin-left: .2rem;
height: .5rem;
border-left: 1px solid black;
}
.footer {
width: 100%;
height: 5vh;
background-color: #eae5e5;
display: flex;
justify-content: center;
align-items: center;
}
.footer span {
margin-left: .3rem;
font-size: .5rem;
cursor: pointer;
}
.footer span:hover {
text-decoration: underline;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment