mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-12 03:13:24 +01:00
76 lines
1.2 KiB
Text
76 lines
1.2 KiB
Text
:global
|
|
.brep-debugger {
|
|
|
|
& .strike {
|
|
text-decoration:line-through;
|
|
}
|
|
|
|
& .grayed {
|
|
color: lightgray;
|
|
}
|
|
|
|
& .invisible {
|
|
visibility: hidden;
|
|
}
|
|
|
|
padding: 0.4rem;
|
|
line-height: 1.5;
|
|
button {
|
|
font-size: inherit;
|
|
padding: 0 0.4rem;
|
|
}
|
|
|
|
& .operands-veiew {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
& > * {
|
|
flex: 1 1;
|
|
}
|
|
}
|
|
|
|
& .section {
|
|
|
|
&.closable > .caption {
|
|
cursor: pointer;
|
|
& .title {
|
|
&:hover {
|
|
color: blue;
|
|
text-decoration: underline;
|
|
}
|
|
}
|
|
}
|
|
|
|
& .caption {
|
|
white-space: nowrap;
|
|
user-select: none;
|
|
&.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)
|
|
}
|
|
}
|
|
}
|
|
.clickable {
|
|
cursor: pointer;
|
|
&:hover {
|
|
color: blue;
|
|
}
|
|
}
|
|
.button {
|
|
font-size: 1.7rem;
|
|
.clickable;
|
|
}
|
|
}
|
|
|