45 lines
739 B
SCSS
45 lines
739 B
SCSS
|
$button-color: #4CAF50;
|
||
|
$button-background: white;
|
||
|
$row-even-background: transparent;
|
||
|
$row-odd-background: rgba(138, 230, 141, 0.7);
|
||
|
|
||
|
.button {
|
||
|
transition-duration: 0.2s;
|
||
|
border: 2px solid $button-color;
|
||
|
border-radius: 4px;
|
||
|
padding: 10px 24px;
|
||
|
background-color: transparent;
|
||
|
}
|
||
|
|
||
|
.button:hover {
|
||
|
background-color: $button-color; /* Green */
|
||
|
color: $button-background;
|
||
|
}
|
||
|
|
||
|
.logsContainer {
|
||
|
width: 50%;
|
||
|
}
|
||
|
|
||
|
.buttonContainer {
|
||
|
display: flex;
|
||
|
justify-content: space-evenly;
|
||
|
}
|
||
|
|
||
|
.rowsContainer {
|
||
|
height: 500px;
|
||
|
overflow: auto;
|
||
|
}
|
||
|
|
||
|
.rows {
|
||
|
padding: 10px;
|
||
|
overflow-y: scroll;
|
||
|
|
||
|
.even {
|
||
|
background-color: $row-even-background;
|
||
|
}
|
||
|
|
||
|
.odd {
|
||
|
background-color: $row-odd-background;
|
||
|
}
|
||
|
}
|