diff --git a/demo/devel.sh b/demo/devel.sh new file mode 100755 index 0000000..76d52d5 --- /dev/null +++ b/demo/devel.sh @@ -0,0 +1,12 @@ +#!/bin/bash + +last="" +while [ true ]; do + now=$(find ./less -type f -printf "%T@ %Tx %TX %p\n" | sort -n -r | head -1) + if [ "$last" != "$now" ]; then + make >/dev/null + echo "Updated." + fi + last=$now + sleep 1 +done diff --git a/demo/less/layout.less b/demo/less/layout.less index b867d86..f53bace 100644 --- a/demo/less/layout.less +++ b/demo/less/layout.less @@ -191,6 +191,50 @@ table.zebra { font-size: 0.7em; } +.shadow { + box-shadow: 5px 5px rgba(15,15,15,0.05); +} + +.popover { + position: fixed; + height: 100%; + width: 100%; + .focus { + .shadow; + border: 1px solid #CCCCCC; + background-color: #FFFFFF; + border-radius: 5px; + width: 90%; + height: 90%; + margin-left: auto; + margin-right: auto; + margin-top: 2%; + } +} + +.repl { + height: 100%; + padding: 3px; + .repl-left { + float: left; + } + .repl-right { + float: right; + } + .repl-pane { + padding: 0px; + margin: 0px; + border: 0px solid #000000; + resize: none; + width: 48%; + height: 99%; + } +} + +small { + font-size: 0.5em; +} + .clear { clear: both; } diff --git a/demo/templates/base.html b/demo/templates/base.html index e6bc44e..7b61cd9 100644 --- a/demo/templates/base.html +++ b/demo/templates/base.html @@ -3,17 +3,72 @@ {% block title %}{% endblock %} | hy + + +
+
+
+ +

+                
+
+