mirror of
https://github.com/xibyte/jsketcher
synced 2026-01-08 08:45:26 +01:00
58 lines
936 B
Text
58 lines
936 B
Text
.brep-debugger {
|
|
|
|
padding: 0.3em;
|
|
line-height: 1.5;
|
|
button {
|
|
font-size: inherit;
|
|
padding: 0 0.3em;
|
|
}
|
|
|
|
& .operands-veiew {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
& > * {
|
|
flex: 1 1;
|
|
}
|
|
}
|
|
|
|
& .section {
|
|
|
|
&.closable > .caption {
|
|
cursor: pointer;
|
|
& .title {
|
|
&:hover {
|
|
color: blue;
|
|
text-decoration: underline;
|
|
}
|
|
}
|
|
}
|
|
|
|
& .caption {
|
|
&.accent {
|
|
background-color: rgb(255, 244, 244);
|
|
font-weight: bold;
|
|
}
|
|
&.centered {
|
|
text-align: center;
|
|
}
|
|
&.operand-a {
|
|
background-color: rgb(239, 244, 255)
|
|
}
|
|
|
|
&.operand-b {
|
|
background-color: rgb(244, 255, 245)
|
|
}
|
|
&.result {
|
|
background-color: rgb(254, 255, 244)
|
|
}
|
|
}
|
|
}
|
|
.button {
|
|
cursor: pointer;
|
|
font-size: 1.3em;
|
|
&:hover {
|
|
color: blue;
|
|
}
|
|
}
|
|
}
|
|
|