-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added logout functionality, styling and rendering of cards and columns;
Co-authored-by: Nathan Ngo <nathanngo8796@gmail.com> Co-authored-by: Joyce Kwak <joycekwak73@gmail.com> Co-authored-by: Patricia Good <patriciagood415@outlook.com> Co-authored-by: Sam Henderson <shendo87@gmail.com> Co-authored-by: Michael Gacetta <michael.gacetta@gmail.com>
- Loading branch information
1 parent
a480160
commit b8bc488
Showing
10 changed files
with
105 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
.card { | ||
height: 100px; | ||
background-color: $color2; | ||
border-radius: 10px; | ||
color: black; | ||
padding: 10px; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,39 @@ | ||
.modal-home { | ||
background-color: $color1; | ||
color: $color3; | ||
border-radius: 15px; | ||
padding: 10px; | ||
} | ||
|
||
.modal-box { | ||
position: absolute; | ||
top: 50%; | ||
left: 50%; | ||
transform: translate(-50%, -50%); | ||
} | ||
|
||
.modal-column-input { | ||
width: 150px; | ||
height: 20px; | ||
border-radius: 5px; | ||
margin-bottom: 20px; | ||
background-color: $color2; | ||
} | ||
|
||
|
||
.modal-text-button { | ||
|
||
display: flex; | ||
flex-direction: row; | ||
justify-content: space-around; | ||
} | ||
|
||
.columnCont { | ||
display: flex; | ||
flex-direction: column; | ||
background-color: $color1; | ||
color: $color3; | ||
border-radius: 15px; | ||
padding: 10px; | ||
gap: 10px; | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
.user-login-box { | ||
border: thin solid rgb(183, 181, 181); | ||
display: flex; | ||
}; | ||
|
||
.login-header { | ||
color: rgba(229, 207, 207, 0.527); | ||
} | ||
|
||
// username and password text on login page | ||
.login-text { | ||
font-size: 20px; | ||
|
||
} | ||
|
||
.user-input { | ||
width: 50px; | ||
height: 25px; | ||
border-radius: 5px; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters