about summary refs log tree commit diff stats
path: root/public
diff options
context:
space:
mode:
authorAndinus <andinus@nand.sh>2021-10-09 22:09:29 +0530
committerAndinus <andinus@nand.sh>2021-10-09 22:09:29 +0530
commite2fee30f901d11d0897655f032539b31758bbc1e (patch)
tree64811173b7f2d53ba505fdb921750371fcc5a23a /public
parentfc6b96e1f8e4f9f1f43ead24de9a0361b0e71bbb (diff)
downloaddorado-e2fee30f901d11d0897655f032539b31758bbc1e.tar.gz
Add working DDA Algorithm
Diffstat (limited to 'public')
-rw-r--r--public/global.css22
1 files changed, 20 insertions, 2 deletions
diff --git a/public/global.css b/public/global.css
index a7545c5..70859df 100644
--- a/public/global.css
+++ b/public/global.css
@@ -98,13 +98,31 @@ a:visited:hover, a:visited:focus {
   background-color: var(--cyan-subtle-bg);
 }
 
-form, input {
+form, input, button {
   color: var(--fg-main);
   background-color: var(--bg-main);
   margin: .25em;
   padding: .25em;
+
 }
 
-input {
+input, button {
   border: 2px solid var(--bg-alt);
 }
+
+code {
+    font-size: 1rem; /* code size should be same as body */
+    padding: 0 0.4ch;
+    color: var(--fg-special-calm);
+    background-color: var(--bg-alt);
+}
+
+table {
+    width: 100%;
+    margin-bottom: 1em;
+    border-collapse: collapse;
+}
+tbody tr:nth-child(odd) td, tbody tr:nth-child(odd) th {
+    background-color: var(--bg-dim);
+}
+td, th { padding: .25em .5em; border: 1px solid var(--bg-alt); }