Skip to content

Commit

Permalink
Added user dashboard
Browse files Browse the repository at this point in the history
  • Loading branch information
astianmuchui committed May 7, 2024
1 parent 9c7ce31 commit 16842f1
Show file tree
Hide file tree
Showing 8 changed files with 201 additions and 4 deletions.
41 changes: 40 additions & 1 deletion assets/css/acc.css
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ html {
grid-gap: 5px;
}

.grid-2 {
.grid-2, body main .main-bar .container .form-container form {
display: grid;
grid-template-columns: repeat(2, 1fr);
grid-gap: 5px;
Expand Down Expand Up @@ -860,4 +860,43 @@ body main .main-bar .container .stats-container .card p {
font-size: 25px;
opacity: 0.5;
font-style: italic;
}
body main .main-bar .container .form-container {
width: 90%;
height: 80%;
margin-top: 5%;
padding: 1%;
}
body main .main-bar .container .form-container form {
margin-top: 2%;
width: 100%;
height: 60%;
}
body main .main-bar .container .form-container form .form-group {
display: flex;
flex-direction: column;
}
body main .main-bar .container .form-container form .form-group label {
font-size: 14px;
margin-bottom: 5px;
opacity: 1;
color: #f11f81;
}
body main .main-bar .container .form-container form .form-group input {
height: 35px;
padding: 1px;
border: none;
width: 98%;
border-bottom: 1px solid rgba(0, 0, 0, 0.25);
text-transform: none;
margin-bottom: 5%;
}
body main .main-bar .container .form-container form .form-group input:focus {
transition: all 1s ease-in;
border-bottom: 1px solid rgba(0, 0, 0, 0.7);
}
body main .main-bar .container .form-container form button {
width: 200%;
height: 40px;
margin-top: 3%;
}/*# sourceMappingURL=acc.css.map */
2 changes: 1 addition & 1 deletion assets/css/acc.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

56 changes: 56 additions & 0 deletions assets/css/acc.scss
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,62 @@ body
}
}
}

.form-container
{
width: 90%;
height: 80%;
margin-top: 5%;
// border: 1px solid;
padding: 1%;

form
{
margin-top: 2%;
width: 100%;
height: 60%;
@extend .grid-2;

.form-group
{
display: flex;
flex-direction: column;

label
{
font-size: 14px;
margin-bottom: 5px;
opacity: 1;
color: lighten($primary-color, 15);
}

input
{
height: 35px;
padding: 1px ;
border: none;
width: 98%;
border-bottom: 1px solid rgba(0, 0, 0, 0.25);
text-transform: none;
margin-bottom: 5%;

&:focus
{
transition: all 1s ease-in;
border-bottom: 1px solid rgba(0, 0, 0, 0.7);
}
}


}
button
{
width: 200%;
height: 40px;
margin-top: 3%;
}
}
}
}

}
Expand Down
1 change: 1 addition & 0 deletions assets/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -749,6 +749,7 @@ body header {
height: 60px;
display: inline-flex;
transition: all 0.5s cubic-bezier(0.85, 0.135, 0.15, 0.86);
background-color: transparent;
}
body header .title {
background-color: #fff;
Expand Down
Loading

0 comments on commit 16842f1

Please sign in to comment.