-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
v2.2.0
- Loading branch information
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,99 @@ | ||
.container { | ||
display: flex; | ||
box-shadow: rgba(50, 50, 93, 0.25) 0px 25px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset; | ||
align-items: center; | ||
justify-content: center; | ||
gap: 2rem; | ||
padding: 50px 10px; | ||
} | ||
|
||
.left { | ||
display: flex; | ||
flex-direction: column; | ||
gap: .5rem; | ||
} | ||
|
||
.right { | ||
display: flex; | ||
gap: 2rem; | ||
} | ||
|
||
.MuiFormControl-root { | ||
margin: 0 !important; | ||
} | ||
|
||
.exampleData { | ||
display: flex; | ||
gap: 1rem; | ||
flex-wrap: wrap; | ||
justify-content: center; | ||
} | ||
|
||
.explanationContainer { | ||
margin-top: 1rem; | ||
display: flex; | ||
height: 30vh; | ||
} | ||
|
||
.explanationContainer > div { | ||
flex: 1; | ||
margin: 30px; | ||
border-radius: 25px; | ||
box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px; | ||
max-height: 100%; | ||
overflow-y: auto; | ||
} | ||
|
||
.explanationContainer p { | ||
padding: 10px; | ||
} | ||
|
||
.explanationSelection { | ||
display: flex; | ||
gap: 1rem; | ||
justify-content: center; | ||
margin-bottom: 50px; | ||
} | ||
|
||
.explanationSelection > span { | ||
font-weight: 500; | ||
} | ||
|
||
.explanationSelection > span:hover { | ||
cursor: pointer; | ||
} | ||
|
||
.scoresContainer { | ||
padding: 2rem; | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
margin-bottom: 1rem; | ||
gap: .5rem; | ||
} | ||
|
||
.scores { | ||
display: flex; | ||
gap: .5rem; | ||
} | ||
|
||
@media only screen and (max-width: 768px) { | ||
.container { | ||
flex-direction: column; | ||
} | ||
|
||
.right { | ||
flex-direction: column; | ||
} | ||
|
||
.explanationContainer { | ||
flex-direction: column; | ||
height: 60vh; | ||
} | ||
} | ||
|
||
@media only screen and (min-width: 1033px) { | ||
.left { | ||
align-self: flex-end; | ||
} | ||
} |