summaryrefslogtreecommitdiff
path: root/godel/css
diff options
context:
space:
mode:
authorElizabeth (Lizzy) Hunt <elizabeth.hunt@simponic.xyz>2023-11-17 12:13:30 -0700
committerGitHub <noreply@github.com>2023-11-17 12:13:30 -0700
commiteaca9073ebf8a438ec8474f15171a62082fa141b (patch)
tree371b06e288a85c14fccd785008c7abfe586a6471 /godel/css
parent1aefa0f9b1da1c7bb99f7605c334eaf691ba2fda (diff)
parent57a4d439847bf3d63513b2443dfdf1eca5ecbb02 (diff)
downloadsimponic.xyz-eaca9073ebf8a438ec8474f15171a62082fa141b.tar.gz
simponic.xyz-eaca9073ebf8a438ec8474f15171a62082fa141b.zip
Merge pull request #3 from Simponic/godel
L-Program and Godel Numbers
Diffstat (limited to 'godel/css')
-rw-r--r--godel/css/styles.css82
1 files changed, 82 insertions, 0 deletions
diff --git a/godel/css/styles.css b/godel/css/styles.css
new file mode 100644
index 0000000..799e183
--- /dev/null
+++ b/godel/css/styles.css
@@ -0,0 +1,82 @@
+* {
+ margin: 0;
+}
+
+button {
+ background: #bbbbbb;
+ border: 1px solid white;
+ border-radius: 0.2rem;
+ padding: 0.3rem;
+ display: inline-block;
+ cursor: pointer;
+}
+
+button:hover {
+ background: #cccccc;
+}
+
+body {
+ font-family: "Trebuchet MS", sans-serif;
+ background-color: #aaaaaa;
+}
+
+.container {
+ display: flex;
+ width: 90%;
+ margin-left: auto;
+ margin-right: auto;
+ flex-direction: column;
+ gap: 1rem;
+
+ padding: 2rem;
+}
+
+.textarea-container {
+ display: flex;
+ flex-direction: column;
+ gap: 1rem;
+ box-shadow: 5px 5px 5px #666666;
+ border: 2px solid white;
+ border-radius: 0.25rem;
+ padding: 1rem;
+ flex: 1;
+}
+
+.source-container {
+ display: flex;
+ flex-direction: row;
+ gap: 1rem;
+ height: 100%;
+}
+
+textarea {
+ border-radius: 0.25rem;
+}
+
+.CodeMirror {
+ height: 50vh;
+}
+
+.error {
+ color: red;
+}
+
+.success {
+ color: green;
+}
+
+hr {
+ border-top: 2px solid black;
+ border-bottom: none;
+}
+
+pre {
+ white-space: pre-wrap;
+ word-wrap: break-word;
+}
+
+@media only screen and (max-width: 1000px) {
+ .source-container {
+ flex-direction: column;
+ }
+}