diff options
| author | Scott Lawrence <scott+git@ineffectivetheory.com> | 2025-03-19 21:23:32 -0600 |
|---|---|---|
| committer | Scott Lawrence <scott+git@ineffectivetheory.com> | 2025-03-19 21:23:32 -0600 |
| commit | bab7929215b3d5a1d66b43ee5b03ad767aa32374 (patch) | |
| tree | 0d945d2ffb6ed49ad8e6992d6ea8a0402bb47782 /claude-julia/style.css | |
| download | mini-bab7929215b3d5a1d66b43ee5b03ad767aa32374.tar.gz mini-bab7929215b3d5a1d66b43ee5b03ad767aa32374.tar.bz2 mini-bab7929215b3d5a1d66b43ee5b03ad767aa32374.zip | |
Initial commit
Diffstat (limited to 'claude-julia/style.css')
| -rw-r--r-- | claude-julia/style.css | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/claude-julia/style.css b/claude-julia/style.css new file mode 100644 index 0000000..e24c898 --- /dev/null +++ b/claude-julia/style.css @@ -0,0 +1,59 @@ +html { + background: #ddd; + margin: 0; + padding: 0; +} + +body { + margin: 0; + padding: 0; +} + +h1 { + font-size: 14pt; + text-align: center; +} + +#request { + text-align: center; +} + +textarea { + resize: none; + width: calc(100% - 24pt); + height: 40vh; + margin: 6pt 12pt; +} + +button { + font-size: 14pt; +} + +#response { + width: calc(100% - 24pt); + margin: 0 12pt; +} + +.code { + display: flex; + flex-direction: row; +} + +.code pre { + width: 43%; + margin: 0 2%; + padding: 1%; + border: 1px solid #aaa; +} + +.code pre.orig { + color: #500; +} + +.code pre.impr { + color: #050; +} + +.expl { + margin: 20pt 2%; +} |
