Skip to content
Snippets Groups Projects
Commit 95ea3437 authored by Richard Taesler's avatar Richard Taesler
Browse files

Points field added

parent d781c874
Branches
Tags release-0_11_1
No related merge requests found
...@@ -54,29 +54,6 @@ ...@@ -54,29 +54,6 @@
border-color: var(--btn-bg-color); border-color: var(--btn-bg-color);
} }
button {
width: 40px;
height: 40px;
padding: 0;
background-color: var(--btn-bg-color);
border: none;
border-radius: 50%;
cursor: pointer;
display: flex;
justify-content: center;
align-items: center;
transition: background-color 0.3s;
}
button:hover {
background-color: var(--btn-hover-color);
}
button i {
color: var(--btn-text-color);
font-size: 18px;
}
/* Styles for the chat messages */ /* Styles for the chat messages */
.user-message, .user-message,
.bot-message { .bot-message {
...@@ -104,7 +81,7 @@ ...@@ -104,7 +81,7 @@
padding: 20px; padding: 20px;
gap: 20px; gap: 20px;
width: 100%; width: 100%;
max-width: 400px; /* Falls du möchtest, dass die rechte Box nicht zu groß wird */ max-width: 600px; /* Falls du möchtest, dass die rechte Box nicht zu groß wird */
} }
/* Responsiveness */ /* Responsiveness */
...@@ -206,7 +183,17 @@ ...@@ -206,7 +183,17 @@
<div class="left-column"> <div class="left-column">
<button class="box">Download Work</button> <button class="box">Download Work</button>
<button class="box">Upload Grade</button> <button class="box">Upload Grade</button>
<div class="box">Points:</div> <div class="box">
Points:
<div class="boxinput">
<input
type="number"
id="kommazahl"
name="kommazahl"
step="0.01"
/>
</div>
</div>
<button class="box">Submit</button> <button class="box">Submit</button>
</div> </div>
......
...@@ -67,11 +67,12 @@ body { ...@@ -67,11 +67,12 @@ body {
line-height: 1.6; line-height: 1.6;
} }
label, h1, a { label,
color: var(--text-color) h1,
a {
color: var(--text-color);
} }
input { input {
width: 100%; width: 100%;
padding: 0.75rem; padding: 0.75rem;
...@@ -136,7 +137,9 @@ button:hover { ...@@ -136,7 +137,9 @@ button:hover {
/* Vertikale Trennlinie */ /* Vertikale Trennlinie */
.divider { .divider {
background-color: var(--divider-color); /* Dunklere Farbe für bessere Sichtbarkeit */ background-color: var(
--divider-color
); /* Dunklere Farbe für bessere Sichtbarkeit */
width: 4px; /* Etwas breiter */ width: 4px; /* Etwas breiter */
height: 100%; height: 100%;
margin: 0; /* Entfernt die seitlichen Abstände */ margin: 0; /* Entfernt die seitlichen Abstände */
...@@ -177,14 +180,12 @@ button:hover { ...@@ -177,14 +180,12 @@ button:hover {
font-weight: bold; font-weight: bold;
} }
.box:hover { .boxinput {
background-color: var(--btn-hover-color); padding-left: 1rem;
border: 1px solid var(--btn-hover-color);
cursor: pointer;
} }
li { li {
list-style: none;; list-style: none;
} }
/* Responsive Design */ /* Responsive Design */
...@@ -197,7 +198,8 @@ li { ...@@ -197,7 +198,8 @@ li {
display: none; display: none;
} }
.left-column, .right-column { .left-column,
.right-column {
padding: 0; padding: 0;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment