-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a305c76
commit 0d738b2
Showing
10 changed files
with
231 additions
and
79 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# EditorConfig is awesome: https://EditorConfig.org | ||
|
||
# top-most EditorConfig file | ||
root = true | ||
|
||
[*] | ||
indent_style = space | ||
indent_size = 2 | ||
end_of_line = lf | ||
charset = utf-8 | ||
trim_trailing_whitespace = false | ||
insert_final_newline = false |
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 @@ | ||
const config = { | ||
server: { | ||
baseUrl: "https://ehworld20220702211431.azurewebsites.net", | ||
}, | ||
}; | ||
|
||
export default config; |
This file was deleted.
Oops, something went wrong.
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,62 @@ | ||
@import "./variables.scss"; | ||
|
||
.loginContainer { | ||
width: 100vw; | ||
height: 100vh; | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
text-align: center; | ||
justify-content: center; | ||
background-color: $background; | ||
} | ||
|
||
.login { | ||
padding: 4rem 5.5rem; | ||
transform: rotate(12deg); | ||
border-radius: 12%; | ||
background-color: $primary; | ||
font-size: 1.5rem; | ||
|
||
& .loginForm { | ||
border-radius: 10%; | ||
color: $white; | ||
transform: rotate(-12deg); | ||
background-color: $dark; | ||
padding: 4rem 5.5rem; | ||
|
||
& .formInput { | ||
border: solid transparent; | ||
border-radius: 12px; | ||
padding: 10px; | ||
outline: transparent; | ||
transition: 0.3s; | ||
transform: scale(1); | ||
background-color: $white; | ||
} | ||
|
||
& .submitButton { | ||
border: solid transparent; | ||
border-radius: 12px; | ||
padding: 10px; | ||
outline: transparent; | ||
transition: 0.3s; | ||
transform: scale(1); | ||
background-color: $white; | ||
|
||
&:hover:not(:disabled) { | ||
background-color: $primary; | ||
transform: scale(1.2); | ||
cursor: pointer; | ||
} | ||
|
||
&:active:not(:disabled) { | ||
background-color: $secondary; | ||
} | ||
|
||
&:disabled:hover { | ||
cursor: not-allowed; | ||
} | ||
} | ||
} | ||
} |
File renamed without changes.
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,5 @@ | ||
$background: rgb(71, 71, 71); | ||
$primary: aliceblue; | ||
$secondary: aquamarine; | ||
$dark: rgb(97, 97, 97); | ||
$white: #ffffff; |
Oops, something went wrong.