aboutsummaryrefslogtreecommitdiff
path: root/static/styles.css
diff options
context:
space:
mode:
authorB Stack <bgstack15@gmail.com>2020-12-11 14:37:59 -0500
committerB Stack <bgstack15@gmail.com>2020-12-11 14:37:59 -0500
commit1a6ca71719469c50cda0ea932c96630fc200036d (patch)
treee04ca634acffdcd84f9857822b707ce3b490f093 /static/styles.css
parentadd note about filename (diff)
downloadhex-zero-1a6ca71719469c50cda0ea932c96630fc200036d.tar.gz
hex-zero-1a6ca71719469c50cda0ea932c96630fc200036d.tar.bz2
hex-zero-1a6ca71719469c50cda0ea932c96630fc200036d.zip
move styles to Flask static/ dir
Diffstat (limited to 'static/styles.css')
-rw-r--r--static/styles.css54
1 files changed, 54 insertions, 0 deletions
diff --git a/static/styles.css b/static/styles.css
new file mode 100644
index 0000000..f97e102
--- /dev/null
+++ b/static/styles.css
@@ -0,0 +1,54 @@
+/* this is a template file that gets formatted by python str.format()
+ * so these double-braces get interpreted to just single ones.
+ */
+#main {
+ float: left;
+ margin: 0 0 2em 4em;
+ padding-bottom: 4em;
+ width: auto;
+}
+
+#header_sub { margin-left: 6em; }
+#sidebar {
+ /*float: right;*/
+ padding: 0 2.5em 2.5em 0;
+ position: fixed;
+ top: 0px;
+ right: 0px;
+ background-color: #eee;
+ border-style: dashed;
+ border-width: 0px 0px 1px 1px;
+ border-color: #ddd;
+}
+footer {
+ position: fixed;
+ text-align: center;
+ bottom: 0;
+ width: 100%;
+ padding: 0.25em;
+ background: #f5f5f5;
+}
+
+pre {
+ background-color: #ddd;
+}
+
+body, input, select, textarea {
+ font-size: 10pt;
+}
+.box {
+ height: 0;
+ display: none;
+ transition:all 0.8s linear;
+}
+input:checked ~ .box {
+ display: inline;
+}
+
+label#toggle {
+ font-size: 80%;
+ cursor: pointer;
+ color: blue;
+ text-decoration: underline;
+}
+
bgstack15