summaryrefslogtreecommitdiffstats
path: root/nfsw/static
diff options
context:
space:
mode:
authorrsiddharth <s@ricketyspace.net>2019-09-21 11:59:08 -0400
committerrsiddharth <s@ricketyspace.net>2019-09-21 11:59:08 -0400
commit69b7449e4cf22c7652e89e98ccd6a145bf329716 (patch)
treed40fb5e85ffb968651a7bee2beda4b8da3d6dd63 /nfsw/static
parentad86bd2430b30ffb714345de75f3e4720f593b02 (diff)
nfsw/static: Add io.css.
Diffstat (limited to 'nfsw/static')
-rw-r--r--nfsw/static/io.css62
1 files changed, 62 insertions, 0 deletions
diff --git a/nfsw/static/io.css b/nfsw/static/io.css
new file mode 100644
index 0000000..fd8f59a
--- /dev/null
+++ b/nfsw/static/io.css
@@ -0,0 +1,62 @@
+body {
+ font-size: 1em;
+ overflow: hidden;
+ margin: 0 0 0 0;
+}
+
+.io-block {
+ height:98vh;
+ display:flex;
+ flex-direction: column;
+ align-items: stretch;
+ justify-content: center;
+}
+
+.console {
+ overflow-y: auto;
+ flex: 1 0 90%;
+ margin-left: 15px;
+ margin-bottom: 10px;
+}
+
+.console p.concierge {
+ margin: 0 0 0 0;
+ border-left: 2px solid rgb(180,180,240);
+ padding-left: 5px;
+}
+
+.console p.user {
+ margin: 0 0 0px 0;
+ border-left: 2px solid rgb(180,240,180);
+ padding-left: 5px;
+}
+
+.console p.blank {
+ margin: 0 0 0 0;
+ border-left: 2px solid rgb(255,255,255);
+ padding-left: 5px;
+}
+
+.prompt {
+ flex: 1 0 auto;
+}
+
+.prompt form {
+ display:flex;
+ flex-direction: row;
+ justify-content: center;
+
+ height: 98%;
+}
+
+.prompt input {
+ width: 95%;
+ height: 98%;
+ font-size: 1.2em;
+ padding-left: 5px;
+ border: 2px solid rgb(230,230,230);
+}
+
+.prompt input:focus {
+ outline-width: 0px;
+}