-
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.
Merge branch 'backend' of https://github.com/TechLabs-Berlin/wt23-pos…
…egenie into backend
- Loading branch information
Showing
17 changed files
with
529 additions
and
471 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
113 changes: 86 additions & 27 deletions
113
frontend/src/components/05_update_video/ModalFeedback.css
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,58 +1,117 @@ | ||
.modal-container { | ||
.modal-overlay { | ||
position: fixed; | ||
z-index: 1; | ||
left: 0; | ||
top: 0; | ||
width: 100%; | ||
height: 100%; | ||
overflow: auto; | ||
left: 0; | ||
right: 0; | ||
bottom: 0; | ||
background-color: rgba(0, 0, 0, 0.4); | ||
display: flex; | ||
align-items: center; | ||
justify-content: center; | ||
align-items: center; | ||
z-index: 9999; | ||
} | ||
|
||
.modal-content { | ||
.modal-container { | ||
background-color: #fff; | ||
border-radius: 5px; | ||
width: 90%; | ||
max-height: 90%; | ||
overflow: auto; | ||
padding: 20px; | ||
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5); | ||
border-radius: 10px; | ||
box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3); | ||
position: relative; | ||
display: flex; | ||
flex-direction: column; | ||
} | ||
|
||
.title-h2 { | ||
font-size: 1.9em; | ||
.close-button { | ||
position: absolute; | ||
background-color: transparent; | ||
top: 10px; | ||
right: 10px; | ||
font-size: 1em; | ||
cursor: pointer; | ||
margin: 0 auto; | ||
display: block; | ||
} | ||
.close-button:hover { | ||
box-shadow: #f35d6c91 0px 7px 29px 0px; | ||
} | ||
.results { | ||
color: #000; | ||
margin-bottom: 10px; | ||
} | ||
.modal-container video { | ||
width: 100%; | ||
height: auto; | ||
} | ||
|
||
.video_container { | ||
border: 1px solid white; | ||
padding: 6px 3px 0 3px; | ||
margin-top: 40px; | ||
box-shadow: #f35d6cae 0px 1px 0px, #f35d6cae 0px 8px 24px, | ||
#f35d6c6a 0px 16px 58px; | ||
.image-container { | ||
position: relative; | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
} | ||
video { | ||
max-width: 100%; | ||
|
||
.image-feedback { | ||
width: 100%; | ||
height: auto; | ||
} | ||
|
||
.download-icon { | ||
position: absolute; | ||
top: 10px; | ||
right: 10px; | ||
padding: 5px; | ||
cursor: pointer; | ||
transition: all 0.2s; | ||
border: 2px solid #f35d6b; | ||
border-radius: 5px; | ||
padding: 1px 5px; | ||
color: #f35d6b; | ||
} | ||
|
||
.download-icon:hover { | ||
background-color: #f35d6c6c; | ||
border-radius: 50%; | ||
} | ||
|
||
h3 { | ||
font-weight: 300; | ||
margin-bottom: 2em; | ||
margin-top: 1em; | ||
} | ||
|
||
.loading-spinner { | ||
display: flex; | ||
justify-content: center; | ||
flex-direction: column; | ||
justify-content: flex-start; | ||
align-items: center; | ||
height: 300px; | ||
color: #000; | ||
} | ||
|
||
.spinner { | ||
border: 4px solid rgba(0, 0, 0, 0.1); | ||
border-top-color: #f35d6b; | ||
width: 40px; | ||
height: 40px; | ||
border-radius: 50%; | ||
width: 50px; | ||
height: 50px; | ||
animation: spin 1s ease-in-out infinite; | ||
border-top: 4px solid #f35d6b; | ||
border-right: 2px solid transparent; | ||
animation: spin 0.8s linear infinite; | ||
} | ||
|
||
@keyframes spin { | ||
to { | ||
0% { | ||
transform: rotate(0deg); | ||
} | ||
100% { | ||
transform: rotate(360deg); | ||
} | ||
} | ||
h2 { | ||
margin-bottom: 8px; | ||
} | ||
|
||
.modal-container { | ||
text-align: center; | ||
} |
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
.dark-mode { | ||
background-color: black; | ||
color: white; | ||
background-color: #000; | ||
color: #ffffff; | ||
transition: all ease 1s; | ||
} |
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,5 +1,5 @@ | ||
.light-mode { | ||
background-color: white; | ||
color: black; | ||
background-color: #fff; | ||
color: #000; | ||
transition: all ease 1s; | ||
} |
Oops, something went wrong.