53 lines
894 B
CSS
53 lines
894 B
CSS
.blockingControl {
|
|
text-align: center;
|
|
font-size: 150%;
|
|
}
|
|
|
|
#controlsBlock > ul {
|
|
list-style: none;
|
|
padding: 0;
|
|
}
|
|
#controlsBlock .control {
|
|
margin: 1em 0;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
#controlsBlock .controlText {
|
|
width: 100%;
|
|
padding: 1rem 2.6rem 1rem 1.6rem;
|
|
/*For the .hide element */
|
|
position: relative;
|
|
}
|
|
#controlsBlock .controlText p {
|
|
margin: 0;
|
|
}
|
|
|
|
.controlText .hide {
|
|
position: absolute;
|
|
top: 0rem;
|
|
right: -1.4rem;
|
|
font-size: 200%;
|
|
}
|
|
|
|
#controlExplanation {
|
|
}
|
|
#controlExplanation > div {
|
|
display: inline;
|
|
}
|
|
|
|
/*Disable links visually */
|
|
#controlExplanation a {
|
|
color: inherit;
|
|
text-decoration: none;
|
|
}
|
|
|
|
/* Display the values of the variables in the explanation of the failed control */
|
|
#controlsBlock .variable .situationValue {
|
|
display: inline-block;
|
|
}
|
|
#controlsBlock img {
|
|
margin: 0 1em 0 !important;
|
|
width: 1.6em !important;
|
|
height: 1.6em !important;
|
|
}
|