41 lines
949 B
CSS
41 lines
949 B
CSS
/*
|
|
This program has been developed by students from the bachelor Computer Science at Utrecht
|
|
University within the Software Project course.
|
|
© Copyright Utrecht University (Department of Information and Computing Sciences)
|
|
*/
|
|
.logging-container {
|
|
box-sizing: border-box;
|
|
|
|
width: max(30dvw, 500px);
|
|
flex-shrink: 0;
|
|
|
|
box-shadow: 0 0 1rem black;
|
|
}
|
|
|
|
.no-numbers {
|
|
list-style-type: none;
|
|
counter-reset: none;
|
|
padding-inline-start: 0;
|
|
}
|
|
|
|
.log-container {
|
|
.accented-0, .accented-10 {
|
|
background-color: color-mix(in oklab, canvas, rgb(159, 159, 159) 35%)
|
|
}
|
|
.accented-20 {
|
|
background-color: color-mix(in oklab, canvas, green 35%)
|
|
}
|
|
.accented-30 {
|
|
background-color: color-mix(in oklab, canvas, yellow 35%)
|
|
}
|
|
.accented-40, .accented-50 {
|
|
background-color: color-mix(in oklab, canvas, red 35%)
|
|
}
|
|
}
|
|
|
|
.floating-button {
|
|
position: absolute;
|
|
bottom: 1rem;
|
|
right: 1rem;
|
|
box-shadow: 0 0 1rem rgba(0, 0, 0, 0.5);
|
|
} |