55 lines
826 B
CSS
55 lines
826 B
CSS
.desctription-heading{
|
|
display: block;
|
|
justify-self: center;
|
|
grid-area: 1/12/ 1 / 1;
|
|
}
|
|
|
|
.scheme-image{
|
|
grid-area: 2/1/6/5;
|
|
width: 100%;
|
|
}
|
|
.inputs{
|
|
grid-area: 2/5/3/6;
|
|
min-width: 300px;
|
|
max-width: 300px;
|
|
}
|
|
.outputs{
|
|
grid-area: 3/5/4/6;
|
|
min-width: 300px;
|
|
max-width: 300px;
|
|
}
|
|
.radio-label{
|
|
display: inline-block;
|
|
}
|
|
|
|
p{
|
|
line-height: 0;
|
|
}
|
|
.max-w{
|
|
width: 80%;
|
|
}
|
|
|
|
.bad-input-tooltip {
|
|
display: block;
|
|
background: #ffffff;
|
|
color: #721c24;
|
|
border: 1px solid #8f0c19;
|
|
padding: 4px 8px;
|
|
max-width: 220px;
|
|
white-space: normal;
|
|
}
|
|
|
|
.bad-input-highlight {
|
|
outline: 2px solid #990917;
|
|
}
|
|
|
|
.hidden{
|
|
display: none;
|
|
}
|
|
body{
|
|
display: grid;
|
|
gap: 20px;
|
|
grid-template-columns: repeat(12,1fr);
|
|
grid-template-rows:repeat(6,min-content) ;
|
|
}
|