aboutsummaryrefslogtreecommitdiff
path: root/static/amethyst.css
diff options
context:
space:
mode:
Diffstat (limited to 'static/amethyst.css')
-rw-r--r--static/amethyst.css59
1 files changed, 54 insertions, 5 deletions
diff --git a/static/amethyst.css b/static/amethyst.css
index 904a2bc..a6f22c1 100644
--- a/static/amethyst.css
+++ b/static/amethyst.css
@@ -59,19 +59,19 @@ li {
footer {
border-top: 2px solid white;
- margin-top: 50px;
+ margin-top: 20px;
padding-bottom: 50px;
font-size: smaller;
font-style: italic;
}
-#about-links {
+.links {
display: flex;
justify-content: flex-end;
flex-wrap: wrap;
}
-#about-links > p {
+.links > p {
margin-left: 20px;
white-space: nowrap;
}
@@ -123,6 +123,12 @@ button, input[type="submit"] {
min-width: 100px;
}
+input[type="file"] {
+ font-size: inherit;
+ font-style: italic;
+ cursor: pointer;
+}
+
button:active, input[type="submit"]:active {
background-color: lightblue;
}
@@ -248,7 +254,6 @@ grge {
font-size: smaller;
}
-
.important {
color: cyan !important;
}
@@ -258,10 +263,54 @@ grge {
box-sizing: border-box;
}
+#draw-this {
+ font-size: small;
+}
+
+#img-form {
+ display: flex;
+ align-items: center;
+ flex-wrap: wrap;
+}
+
+.hist-log {
+ padding: 10px;
+ border-radius: 10px;
+ font-family: monospace;
+ overflow-y: scroll;
+ overflow-x: hidden;
+ height: 85px;
+ background-color: black;
+ font-size: larger;
+ margin-top: 20px;
+ margin-bottom: 20px;
+}
+
+.hist-log > li {
+ list-style: none;
+}
+
+.hist-log > li:before {
+ content: "→ ";
+}
+
+.hist-log > li > strong {
+ color: white;
+}
+
+.page-id {
+ color: lightgrey;
+ font-style: italic;
+}
+
+.illustration {
+ border-radius: 20px;
+}
+
pre {
background-color: white;
padding: 10px;
- overflow-x: scroll;
+ overflow-x: hidden;
}
pre > code {