mirror of
https://github.com/ohm-engineering/obsidian-csharp-interactive.git
synced 2026-07-22 07:24:31 +00:00
33 lines
622 B
CSS
33 lines
622 B
CSS
.csharp-runner-container {
|
|
margin: 0.5rem 0 1.25rem;
|
|
}
|
|
|
|
.csharp-runner-button {
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
|
|
.csharp-runner-input {
|
|
width: 100%;
|
|
min-height: 4.5rem;
|
|
margin-bottom: 0.5rem;
|
|
resize: vertical;
|
|
}
|
|
|
|
.csharp-runner-details {
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
|
|
.csharp-runner-details > summary {
|
|
cursor: pointer;
|
|
margin-bottom: 0.35rem;
|
|
}
|
|
|
|
.csharp-runner-output {
|
|
margin: 0;
|
|
padding: 0.75rem;
|
|
white-space: pre-wrap;
|
|
word-break: break-word;
|
|
background-color: var(--background-secondary);
|
|
border: 1px solid var(--background-modifier-border);
|
|
border-radius: 6px;
|
|
}
|