From 189eeba3d8cd0ab3c58bed7a5f6e9527e28cb146 Mon Sep 17 00:00:00 2001 From: phi-line Date: Sun, 3 Jun 2018 18:16:59 -0700 Subject: [PATCH] added basic code for intermediate example --- examples/batch/batch.html | 62 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) diff --git a/examples/batch/batch.html b/examples/batch/batch.html index 5535f2a..21c3bed 100644 --- a/examples/batch/batch.html +++ b/examples/batch/batch.html @@ -9,12 +9,74 @@ display: grid; grid-template-rows: auto; } + span, button, input, pre { font: 1.2em monospace; } + input { + width: 25vw; + border: 0; + border-bottom: 1px dashed black; + } + + label.dept, label.course, label.status { grid-column: 1 / 2; } + + input, select { grid-column: 2 / 3; } + + button + + .input { + display: grid; + grid-template-columns: 100px 1fr; + grid-gap: 16px; + } + + .content { margin:0 auto; } +
+
+ + + + + + + + + +
+ + https://floof.li/fh/batch +
+