Fixed height of middle container and several other css bugs

This commit is contained in:
Verena Schulz
2025-12-07 16:09:12 +01:00
parent 59b820d917
commit 0efb7585ba
2 changed files with 27 additions and 16 deletions
+5 -3
View File
@@ -8,7 +8,9 @@
</head> </head>
<body> <body>
<div id="h1-wrapper">
<h1 id="h1">Video to document</h1> <h1 id="h1">Video to document</h1>
</div>
<div class="step-nav"> <div class="step-nav">
<div class="step-item active" data-step="1">1. Step</div> <div class="step-item active" data-step="1">1. Step</div>
@@ -69,15 +71,15 @@
<label id="label_format" for="docFormat">Meeting report</label> <label id="label_format" for="docFormat">Meeting report</label>
</div> </div>
<div class="checkbox-container"> <div class="checkbox-container">
<input type="checkbox" name="docFormat" id="docFormatSummary" value="Summary with timestamps"> <input type="checkbox" name="docFormat" id="docFormatSummary1" value="Summary with timestamps">
<label id="label_summary" for="docFormatSummary">Summary with timestamps</label> <label id="label_summary" for="docFormatSummary">Summary with timestamps</label>
</div> </div>
<div class="checkbox-container"> <div class="checkbox-container">
<input type="checkbox" name="docFormat" id="docFormatSummary" value="Summary with timestamps"> <input type="checkbox" name="docFormat" id="docFormatSummary2" value="Summary with timestamps">
<label id="label_summary" for="docFormatSummary">Summary with timestamps</label> <label id="label_summary" for="docFormatSummary">Summary with timestamps</label>
</div> </div>
<div class="checkbox-container"> <div class="checkbox-container">
<input type="checkbox" name="docFormat" id="docFormatSummary" value="Summary with timestamps"> <input type="checkbox" name="docFormat" id="docFormatSummary3" value="Summary with timestamps">
<label id="label_summary" for="docFormatSummary">Summary with timestamps</label> <label id="label_summary" for="docFormatSummary">Summary with timestamps</label>
</div> </div>
<div class="checkbox-container"> <div class="checkbox-container">
+20 -11
View File
@@ -6,10 +6,22 @@ body {
align-items: center; align-items: center;
height: 100vh; height: 100vh;
background-color: #f2f3f4; background-color: #f2f3f4;
gap: 15px; gap: 10px;
margin: 0; margin: 0;
} }
#h1-wrapper {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
display: flex;
padding-bottom: 25px;
width: 770px;
height: 50px;
background-color: #FFF;
box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
border-radius: 5px;
justify-content: center;
margin-bottom: 10px;
}
.upload-container { .upload-container {
background: white; background: white;
@@ -134,7 +146,7 @@ gap: 5px;
width: 700px; width: 700px;
flex-direction: column; flex-direction: column;
align-items: center; align-items: center;
padding: 5% 50px; padding: 40px;
margin-top: 20px; margin-top: 20px;
gap: 10px; gap: 10px;
border: 0px; border: 0px;
@@ -144,10 +156,6 @@ gap: 5px;
box-shadow: 0px 4px 10px rgba(0,0,0,0.1); box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
} }
h1 {
align-content: center;
}
.progressbar{ .progressbar{
position: relative; position: relative;
width: 210px; width: 210px;
@@ -202,9 +210,9 @@ h1 {
.step-nav { .step-nav {
display: flex; display: flex;
gap: 20px; gap: 20px;
margin-top: 20px; justify-content: center;
background: #fff; background: #fff;
padding: 10px 20px; padding: 10px 30px;
border-radius: 6px; border-radius: 6px;
box-shadow: 0 4px 10px rgba(0,0,0,0.1); box-shadow: 0 4px 10px rgba(0,0,0,0.1);
} }
@@ -229,9 +237,11 @@ h1 {
/*panels*/ /*panels*/
.step { .step {
padding-top: 70px;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
justify-content: center; justify-content: center;
min-height: 400px;
} }
/*Navigation arrows*/ /*Navigation arrows*/
@@ -247,6 +257,7 @@ h1 {
justify-content: center; justify-content: center;
gap: 30px; gap: 30px;
width: max-content; width: max-content;
height: auto;
} }
.navBtn { .navBtn {
@@ -269,17 +280,15 @@ h1 {
.testy{ .testy{
background-color: #FFF; background-color: #FFF;
display: flex; display: flex;
width: 700px; width: auto;
flex-direction: row; flex-direction: row;
align-items: center; align-items: center;
padding: 5% 50px;
margin-top: 20px; margin-top: 20px;
gap: 10px; gap: 10px;
border: 0px; border: 0px;
border-color: black; border-color: black;
border-style: solid; border-style: solid;
border-radius: 6px; border-radius: 6px;
box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
} }
.box2 { .box2 {