mirror of
https://gitlab.rlp.net/proj-wise2526-video2document/video2document.git
synced 2026-06-15 18:01:52 +02:00
464 lines
8.3 KiB
CSS
464 lines
8.3 KiB
CSS
body {
|
|
font-family: Arial, sans-serif;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 100vh;
|
|
background-color: #f2f3f4;
|
|
gap: 10px;
|
|
margin: 0;
|
|
}
|
|
|
|
#h1 {
|
|
position: absolute;
|
|
left: 50%;
|
|
top: 50%;
|
|
transform: translate(-50%, -50%);
|
|
margin: 0;
|
|
z-index: 20;
|
|
|
|
}
|
|
|
|
#h1-wrapper {
|
|
position: relative;
|
|
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
|
width: 770px;
|
|
height: 60px;
|
|
background-color: #FFF;
|
|
box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
|
|
border-radius: 5px;
|
|
margin-bottom: 10px;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.upload-container {
|
|
background: white;
|
|
padding: 40px;
|
|
border-radius: 12px;
|
|
box-shadow: 0 4px 10px rgba(0,0,0,0.1);
|
|
text-align: center;
|
|
width: 350px;
|
|
height: 200px;
|
|
transition: border 0.3s, background-color 0.3s;
|
|
border: 2px dashed #7378c9;
|
|
}
|
|
|
|
|
|
.upload-container.dragover {
|
|
border-color: #007BFF;
|
|
background-color: #eaf0ff;
|
|
}
|
|
|
|
|
|
.upload-container p {
|
|
margin: 0 0 15px 0;
|
|
font-size: 16px;
|
|
color: #555;
|
|
}
|
|
|
|
|
|
.file-name {
|
|
margin-top: 10px;
|
|
font-size: 14px;
|
|
color: #333;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
#thumbnailContainer {
|
|
width: 100%;
|
|
display: flex;
|
|
justify-content: center;
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
#thumbnailImage {
|
|
width: 200px;
|
|
height: auto;
|
|
border-radius: 10px;
|
|
box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
|
|
object-fit: cover;
|
|
}
|
|
|
|
#previewThumbnail {
|
|
width: 150px;
|
|
height: 100px;
|
|
/*border: 1px dashed black;*/
|
|
}
|
|
|
|
.custom-btn {
|
|
padding: 10px 20px;
|
|
margin-top: 10px;
|
|
background-color: #007BFF;
|
|
color: white;
|
|
border: none;
|
|
border-radius: 8px;
|
|
cursor: pointer;
|
|
font-size: 14px;
|
|
}
|
|
|
|
|
|
.custom-btn:hover {
|
|
background-color: #0056b3;
|
|
}
|
|
|
|
.submit-btn:hover {
|
|
background-color: #0056b3;
|
|
}
|
|
|
|
input[type="file"] {
|
|
display: none;
|
|
}
|
|
|
|
.checkbox-group {
|
|
--borderColor: #007bfff5;
|
|
--borderWidth: .125em;
|
|
}
|
|
|
|
.checkbox-group input[type=checkbox] {
|
|
-webkit-appearance: none;
|
|
appearance: none;
|
|
vertical-align: middle;
|
|
background: #fff;
|
|
font-size: 1.8em;
|
|
border-radius: 0.125em;
|
|
display: inline-block;
|
|
border: var(--borderWidth) solid var(--borderColor);
|
|
width: 1em;
|
|
height: 1em;
|
|
position: relative;
|
|
}
|
|
.checkbox-group input[type=checkbox]:before,
|
|
.checkbox-group input[type=checkbox]:after {
|
|
content: "";
|
|
position: absolute;
|
|
background: var(--borderColor);
|
|
width: calc(var(--borderWidth) * 3);
|
|
height: var(--borderWidth);
|
|
top: 50%;
|
|
left: 10%;
|
|
transform-origin: left center;
|
|
}
|
|
.checkbox-group input[type=checkbox]:before {
|
|
transform: rotate(45deg) translate(calc(var(--borderWidth) / -2), calc(var(--borderWidth) / -2)) scaleX(0);
|
|
transition: transform 200ms ease-in 200ms;
|
|
}
|
|
.checkbox-group input[type=checkbox]:after {
|
|
width: calc(var(--borderWidth) * 5);
|
|
transform: rotate(-45deg) translateY(calc(var(--borderWidth) * 2)) scaleX(0);
|
|
transform-origin: left center;
|
|
transition: transform 200ms ease-in;
|
|
}
|
|
.checkbox-group input[type=checkbox]:checked:before {
|
|
transform: rotate(45deg) translate(calc(var(--borderWidth) / -2), calc(var(--borderWidth) / -2)) scaleX(1);
|
|
transition: transform 200ms ease-in;
|
|
}
|
|
.checkbox-group input[type=checkbox]:checked:after {
|
|
width: calc(var(--borderWidth) * 5);
|
|
transform: rotate(-45deg) translateY(calc(var(--borderWidth) * 2)) scaleX(1);
|
|
transition: transform 200ms ease-out 200ms;
|
|
}
|
|
.checkbox-group input[type=checkbox]:focus {
|
|
outline: calc(var(--borderWidth) / 2) dotted rgba(0, 0, 0, 0.25);
|
|
}
|
|
|
|
.checkbox-container{
|
|
margin-top: 8px;
|
|
display: flex;
|
|
justify-items: left;
|
|
align-items: center;
|
|
gap: 5px;
|
|
}
|
|
|
|
|
|
.submit-btn {
|
|
display: flex;
|
|
justify-content: center;
|
|
padding: 10px 20px;
|
|
margin-left: 80px;
|
|
margin-top: 30px;
|
|
margin-bottom: 10px;
|
|
background-color: #007BFF;
|
|
color: white;
|
|
border: none;
|
|
border-radius: 8px;
|
|
cursor: pointer;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.submit-btn:disabled {
|
|
opacity: 0.5;
|
|
cursor: not-allowed;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.mitte {
|
|
background-color: #FFF;
|
|
display: flex;
|
|
width: 700px;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
padding: 40px;
|
|
gap: 10px;
|
|
border: 0px;
|
|
border-color: black;
|
|
border-style: solid;
|
|
border-radius: 6px;
|
|
box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
|
|
}
|
|
|
|
.progressbar{
|
|
position: relative;
|
|
width: 210px;
|
|
height: 30px;
|
|
margin: 50px 20px 5px 20px;
|
|
background: rgb(42, 46, 78);
|
|
border-radius: 5px;
|
|
overflow: hidden;
|
|
visibility: hidden;
|
|
}
|
|
|
|
.progress_fill{
|
|
width: 0%;
|
|
height: 100%;
|
|
background: green;
|
|
transition: all 0.2s;
|
|
}
|
|
|
|
.progress_text{
|
|
position: absolute;
|
|
top: 50%;
|
|
right: 5px;
|
|
transform: translateY(-50%);
|
|
color: white;
|
|
}
|
|
|
|
|
|
.dropdownMenus {
|
|
display: flex;
|
|
justify-content: center;
|
|
margin-top: 1px;
|
|
margin-bottom: 30px;
|
|
gap: 170px;
|
|
padding: 2px 10px 2px 10px;
|
|
}
|
|
|
|
#ai_type, #transkript_type, #language_option {
|
|
padding: 3px;
|
|
}
|
|
|
|
.labelDiv {
|
|
gap: 60px;
|
|
display: flex;
|
|
justify-content: center;
|
|
overflow-wrap:inherit;
|
|
padding-bottom: 20px;
|
|
margin-top: 40px;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
/*Step bar*/
|
|
.step-nav {
|
|
display: flex;
|
|
gap: 20px;
|
|
justify-content: center;
|
|
background: #fff;
|
|
padding: 10px 30px;
|
|
border-radius: 6px;
|
|
box-shadow: 0 4px 10px rgba(0,0,0,0.1);
|
|
}
|
|
|
|
.step-item {
|
|
padding: 10px 25px;
|
|
border-radius: 8px;
|
|
background: #eee;
|
|
cursor: pointer;
|
|
font-weight: bold;
|
|
transition: 0.2s;
|
|
}
|
|
|
|
.step-item.active {
|
|
background: #007BFF;
|
|
color: white;
|
|
}
|
|
|
|
.step-item:hover {
|
|
background: #d9d9d9;
|
|
}
|
|
|
|
/*panels*/
|
|
.step {
|
|
padding-top: 70px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
min-height: 400px;
|
|
}
|
|
|
|
/*Navigation arrows*/
|
|
.step-nav-arrows {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
|
|
.middle-container-wrapper {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 30px;
|
|
width: max-content;
|
|
height: auto;
|
|
}
|
|
|
|
.navBtn {
|
|
display: flex;
|
|
justify-content: center;
|
|
padding: 10px 25px;
|
|
background-color: #007BFF;
|
|
color: white;
|
|
border: none;
|
|
border-radius: 8px;
|
|
cursor: pointer;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.navBtn:disabled {
|
|
background-color: #ccc;
|
|
cursor: not-allowed;
|
|
}
|
|
|
|
.testy{
|
|
background-color: #FFF;
|
|
display: flex;
|
|
width: auto;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
margin-top: 20px;
|
|
gap: 10px;
|
|
border: 0px;
|
|
border-color: black;
|
|
border-style: solid;
|
|
border-radius: 6px;
|
|
visibility: hidden;
|
|
}
|
|
|
|
.box2 {
|
|
background-color: red;
|
|
width: 40px;
|
|
height: 40px;
|
|
padding: 5px;
|
|
border: 1px solid black;
|
|
margin: 5px;
|
|
border-radius: 100px;
|
|
}
|
|
|
|
li {
|
|
color: #FFF;
|
|
}
|
|
|
|
.p-menu1 {
|
|
margin-left: 20px;
|
|
z-index: 10;
|
|
}
|
|
|
|
.hamburger1 {
|
|
height: 45px;
|
|
margin: 0;
|
|
padding-top: 8px;
|
|
display: grid;
|
|
grid-template-rows: repeat(3, 1fr);
|
|
justify-items: center;
|
|
z-index: 120;
|
|
}
|
|
|
|
.hamburger1 div {
|
|
background-color: rgb(61, 61, 61);
|
|
position: relative;
|
|
width: 40px;
|
|
height: 5px;
|
|
margin-top: 0;
|
|
-webkit-transition: all 0.2s ease-in-out;
|
|
transition: all 0.2s ease-in-out;
|
|
}
|
|
|
|
#toggle1 {
|
|
display: none;
|
|
}
|
|
|
|
#toggle1:checked + .hamburger1 .top {
|
|
-webkit-transform: rotate(-45deg);
|
|
transform: rotate(-45deg);
|
|
margin-top: 22.5px;
|
|
}
|
|
|
|
#toggle1:checked + .hamburger1 .meat {
|
|
-webkit-transform: rotate(45deg);
|
|
transform: rotate(45deg);
|
|
margin-top: -5px;
|
|
}
|
|
|
|
#toggle1:checked + .hamburger1 .bottom {
|
|
-webkit-transform: scale(0);
|
|
transform: scale(0);
|
|
}
|
|
|
|
#toggle1:checked ~ .menu1 {
|
|
height: 150px;
|
|
width: 300px;
|
|
}
|
|
|
|
/* Menu */
|
|
.menu1 {
|
|
position: absolute;
|
|
top: 55px;
|
|
left: 20px;
|
|
width: 240px;
|
|
border-radius: 5px;
|
|
background-color: #1C3B69;
|
|
margin: 0;
|
|
display: -ms-grid;
|
|
display: grid;
|
|
grid-template-rows: 1fr repeat(4, 0.5fr);
|
|
grid-row-gap: 25px;
|
|
padding: 0;
|
|
list-style: none;
|
|
clear: both;
|
|
width: auto;
|
|
text-align: center;
|
|
height: 0px;
|
|
overflow: hidden;
|
|
transition: height 0.3s ease, width 0.3s ease;
|
|
z-index: 9999;
|
|
-webkit-transition: all 0.3s ease;
|
|
}
|
|
|
|
.menu1 li:first-child {
|
|
margin-top: 30px;
|
|
}
|
|
|
|
.menu1 li:last-child {
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
.li1 {
|
|
width: 100%;
|
|
margin: 0;
|
|
padding: 10px 0;
|
|
font: 700 20px 'Oswald', sans-serif;
|
|
}
|
|
|
|
.li1:hover {
|
|
background-color: #FFF;
|
|
color: rgb(61, 61, 61);
|
|
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
|
|
-webkit-transition: all 0.3s ease;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
#step2, #step3, #step5 {
|
|
font-size: larger;
|
|
} |