summaryrefslogtreecommitdiffstats
path: root/res
diff options
context:
space:
mode:
authorColin Reeder <colin@vpzom.click>2020-06-16 20:43:10 -0600
committerColin Reeder <colin@vpzom.click>2020-06-16 20:43:10 -0600
commit11df82f9f9b0caec879b137901b6f4b3556e8c98 (patch)
tree4ebc00c9867f49744e816cd3af714f42f4af2e31 /res
parentd502022425d811b2df51928fadac51d5e467d382 (diff)
Introduce some CSS
Diffstat (limited to 'res')
-rw-r--r--res/main.css20
1 files changed, 20 insertions, 0 deletions
diff --git a/res/main.css b/res/main.css
new file mode 100644
index 0000000..543f186
--- /dev/null
+++ b/res/main.css
@@ -0,0 +1,20 @@
+body {
+ margin: 8px;
+}
+.mainHeader {
+ margin: -8px -8px 0 -8px;
+ padding: 8px;
+ border-bottom: 1px solid rgba(0,0,0,.24);
+ box-shadow: 0 1px 3px rgba(0,0,0,.24);
+}
+.mainHeader:after {
+ content: "";
+ clear: both;
+ display: block;
+}
+.mainHeader > .left {
+ float: left;
+}
+.mainHeader > .right {
+ float: right;
+}