Skip to content
Permalink
eb31da7601
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
145 lines (144 sloc) 2.72 KB
.container {
grid-area: container;
display: grid;
height: 100%;
width: 100%;
grid-template-columns: 25% 50% 25%;
grid-template-rows: 5vh auto 5vh;
grid-template-areas:
'. . .'
'. box .'
'. . .';
}
.container_box {
background-color: white;
grid-area: box;
display: grid;
grid-template-columns: 1fr 2.5fr 2.5fr 1fr;
grid-template-rows: 1fr 5fr 2fr auto auto 1fr;
border-radius : 20px;
grid-template-areas:
'. . . .'
'. title title .'
'. . . .'
'. create create .'
'. form form .'
'. . . .';
}
.title {
grid-area: title;
display: grid;
justify-content: center;
align-content: center;
}
.title_text {
animation: bouncy 2s infinite linear;
font-size: 5vw;
}
.create {
grid-area: create;
display: grid;
justify-content: start;
align-content: center;
}
.create_text {
font-size: 2vw;
}
.form {
grid-area: form;
}
.form_inside {
display: grid;
justify-content: start;
align-content: center;
grid-template-columns: 2fr 2fr;
grid-template-rows: 0.25fr 1.5fr 0.15fr 1.5fr 0.15fr 1.5fr 0.15fr 1.5fr 0.15fr 1.5fr 1.5fr 1.5fr;
grid-template-areas:
'. .'
'user user'
'. .'
'name name'
'. .'
'dob dob'
'. .'
'weight weight'
'. .'
'pass pass'
'r_pass r_pass'
'. c_button';
}
.username {
display: grid;
justify-content: center stretch;
align-content: center;
grid-area: user;
}
.username_text {
margin-bottom: 1px;
font-size: 1.5vw;
}
.realname {
display: grid;
justify-content: center stretch;
align-content: center;
grid-area: name;
}
.realname_text {
margin-bottom: 1px;
font-size: 1.5vw;
}
.dob {
display: grid;
justify-content: center stretch;
align-content: center;
grid-area: dob;
}
.dob_text {
margin-bottom: 1px;
font-size: 1.5vw;
}
.weight {
display: grid;
justify-content: center stretch;
align-content: center;
grid-area: weight;
}
.weight_text {
margin-bottom: 1px;
font-size: 1.5vw;
}
.password {
display: grid;
justify-content: center stretch;
align-content: center;
grid-area: pass;
}
.password_text {
margin-bottom: 1px;
font-size: 1.5vw;
}
.r_password {
display: grid;
justify-content: center stretch;
align-content: center;
grid-area: r_pass;
}
.create_button_area {
display: grid;
justify-content: end;
align-content: center;
grid-area: c_button;
}
.create_button {
font-size: 1.5vw;
border-radius: 10em;
}
.error_text {
color: red;
font-size: 1.5vw;
padding-top: 5px;
}
input {
width: 100%;
font-size: 2vw;
}