summaryrefslogtreecommitdiffstats
path: root/ui
diff options
context:
space:
mode:
authorSimo Sorce <simo@redhat.com>2013-12-04 22:42:09 -0500
committerSimo Sorce <simo@redhat.com>2013-12-11 15:35:39 -0500
commit62e6fff6cf4b5c8a5c33c3143f995d047fe6c384 (patch)
tree9c62da6256708b011a0318738d3d08b4235b1931 /ui
parent92496ab03df595a19b61cfe4d0f0b3050262241d (diff)
downloadipsilon-62e6fff6cf4b5c8a5c33c3143f995d047fe6c384.tar.gz
ipsilon-62e6fff6cf4b5c8a5c33c3143f995d047fe6c384.tar.xz
ipsilon-62e6fff6cf4b5c8a5c33c3143f995d047fe6c384.zip
Use jinja2 as the templating system
Add flashy css to indicate this is development stuff
Diffstat (limited to 'ui')
-rw-r--r--ui/ipsilon.css42
1 files changed, 42 insertions, 0 deletions
diff --git a/ui/ipsilon.css b/ui/ipsilon.css
new file mode 100644
index 0000000..a73b838
--- /dev/null
+++ b/ui/ipsilon.css
@@ -0,0 +1,42 @@
+/* Intentionally shocking, for development purpose */
+
+html {
+ height: 100%;
+}
+
+body {
+ overflow: auto;
+ position: relative;
+ background-color: #DEAD42;
+ border-width: 0;
+ font-family: "Liberation Sans",Arial,Sans;
+ font-size: 14px;
+ margin: 0;
+ padding: 0;
+ height: 100%;
+}
+
+textarea[readonly] {
+ color: Gray;
+}
+
+/* ---- Container ---- */
+
+#container {
+ position: absolute;
+ top: 0;
+ left: 0;
+ right: 0;
+ bottom: 0;
+ margin: 0 auto 0;
+}
+
+/* ---- Content ---- */
+#content {
+ position: absolute;
+ top: 42%;
+ left: 42%;
+ right: 42%;
+ bottom: 42%;
+}
+