summaryrefslogtreecommitdiff
path: root/src/css
diff options
context:
space:
mode:
authorElizabeth Hunt <elizabeth.hunt@simponic.xyz>2024-03-04 17:06:57 -0700
committerElizabeth Hunt <elizabeth.hunt@simponic.xyz>2024-03-04 17:06:57 -0700
commit8288d086480d88ac4237f19c194d5829157bac38 (patch)
tree2e5fdc5e9367dcfad7db2df6c444d1d92fd26262 /src/css
parentccc1e182cf72916c9cdc4f10043048aa01a63390 (diff)
downloadthe-abstraction-engine-8288d086480d88ac4237f19c194d5829157bac38.tar.gz
the-abstraction-engine-8288d086480d88ac4237f19c194d5829157bac38.zip
working lambda editor
Diffstat (limited to 'src/css')
-rw-r--r--src/css/editor.css2
-rw-r--r--src/css/modal.css2
-rw-r--r--src/css/style.css11
3 files changed, 3 insertions, 12 deletions
diff --git a/src/css/editor.css b/src/css/editor.css
index 9b1588e..8ce5a81 100644
--- a/src/css/editor.css
+++ b/src/css/editor.css
@@ -2,7 +2,7 @@
.code {
width: 100%;
- font-size: 1.5rem;
+ font-size: 1.25rem;
}
.syntax-error {
diff --git a/src/css/modal.css b/src/css/modal.css
index c10070e..802dc4d 100644
--- a/src/css/modal.css
+++ b/src/css/modal.css
@@ -22,7 +22,7 @@
margin: auto;
padding: 20px;
border: 1px solid var(--yellow);
- width: 40%;
+ width: 60%;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
animation: scaleUp 0.25s;
border-radius: 8px;
diff --git a/src/css/style.css b/src/css/style.css
index c14682b..35fdc31 100644
--- a/src/css/style.css
+++ b/src/css/style.css
@@ -1,6 +1,7 @@
@import url("./theme.css");
@import url("./tf.css");
@import url("./modal.css");
+@import url("./editor.css");
@font-face {
font-family: "scientifica";
@@ -95,10 +96,6 @@ a:visited {
margin: 0;
}
-.code {
- width: 100%;
-}
-
button {
padding: 0.5rem;
border: none;
@@ -108,12 +105,6 @@ button {
cursor: pointer;
transition: background 0.2s ease-in-out;
}
-
button:hover {
background-color: var(--blue);
}
-
-.syntax-error {
- color: var(--red);
- background-color: var(--yellow);
-}