aboutsummaryrefslogtreecommitdiff
path: root/static/style.css
diff options
context:
space:
mode:
authorJulian Hurst <ark@mansus.space>2023-01-13 14:50:04 +0100
committerJulian Hurst <ark@mansus.space>2023-01-13 14:50:04 +0100
commit7d502441a6bd210aff8a8625ee87ea5a1fbbd7ee (patch)
tree43dc38adc610ff20db9054046ab6b39b85f3f397 /static/style.css
parentcffe35e0e3acac7dd5b83cd7cbec9bc9ff1d17e4 (diff)
downloaddocspace-master.tar.gz
Security for /download and frontend style improvementsHEADmaster
Diffstat (limited to 'static/style.css')
-rw-r--r--static/style.css59
1 files changed, 58 insertions, 1 deletions
diff --git a/static/style.css b/static/style.css
index 4db3552..42ae410 100644
--- a/static/style.css
+++ b/static/style.css
@@ -1,16 +1,73 @@
+body {
+ margin: 0;
+}
+
.error {
color: red;
}
-div {
+div.content {
padding: 5px;
+ margin: 8px;
+}
+
+nav {
+ border-bottom: 1px solid black;
+ /*padding-left: 8px;*/
+}
+
+ul.nav {
+ display: inline-flex;
+ margin: 0;
+ padding: 0;
+ width: 100%;
+}
+
+ul.nav li {
+ display: inline-block;
+ padding: 5px;
+ /*padding-right: 5px;
+ padding-left: 5px;
+ width: 150px;*/
+ width: 50%;
+ text-align: center;
+ background: lightgrey;
+ border-right: 1px solid black;
+}
+
+ul.nav li:hover {
+ background: grey;
+}
+
+ul.nav li a {
+ display: block;
+ width: 100%;
+ height: 100%;
+}
+
+div.docs {
+ overflow: scroll;
}
table {
border-collapse: collapse;
+ /*table-layout: fixed;*/
}
td, th {
border: 1px solid black;
padding: 10px;
}
+
+td.filename {
+ overflow: scroll;
+ white-space: nowrap;
+}
+
+form.inline {
+ display: inline;
+}
+
+form.inlineblk {
+ display: inline-block;
+}