Cosmetics: close error boxes and results in color
This commit is contained in:
@@ -343,6 +343,14 @@
|
|||||||
background: lightcoral;
|
background: lightcoral;
|
||||||
border: solid 2px red;
|
border: solid 2px red;
|
||||||
color: red;
|
color: red;
|
||||||
|
&::after {
|
||||||
|
content: 'x';
|
||||||
|
position: absolute;
|
||||||
|
top: 0.1em;
|
||||||
|
right: 0.1em;
|
||||||
|
cursor: pointer;
|
||||||
|
line-height: 0.4em;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
body.initial {
|
body.initial {
|
||||||
@@ -633,6 +641,9 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
.player {
|
||||||
|
color: black !important;
|
||||||
|
}
|
||||||
.ui.red.circular.label {
|
.ui.red.circular.label {
|
||||||
background-color: white;
|
background-color: white;
|
||||||
color: white;
|
color: white;
|
||||||
|
@@ -302,9 +302,11 @@
|
|||||||
}
|
}
|
||||||
.player {
|
.player {
|
||||||
&.winner {
|
&.winner {
|
||||||
|
color: darkred;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
&.looser {
|
&.looser {
|
||||||
|
color: blue;
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -127,6 +127,10 @@
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
$('#error').on('click', e => {
|
||||||
|
clearFeedback();
|
||||||
|
});
|
||||||
|
|
||||||
// prev/next round buttons
|
// prev/next round buttons
|
||||||
if (typeof(activeRound) !== 'undefined') {
|
if (typeof(activeRound) !== 'undefined') {
|
||||||
if (activeRound === 1) {
|
if (activeRound === 1) {
|
||||||
|
Reference in New Issue
Block a user