diff options
author | cbdev <cb@cbcdn.com> | 2023-08-12 23:05:18 +0200 |
---|---|---|
committer | cbdev <cb@cbcdn.com> | 2023-08-12 23:05:18 +0200 |
commit | c5564162515f5d6afafe9082e8dbb2ed63a9d256 (patch) | |
tree | bd75dcc77c5ebf099c9f2ca909d2ab086a85c4b0 /assets | |
parent | 68d846d8f78f774d0c90dbc535d78683b040d5b2 (diff) | |
download | cargohold-c5564162515f5d6afafe9082e8dbb2ed63a9d256.tar.gz cargohold-c5564162515f5d6afafe9082e8dbb2ed63a9d256.tar.bz2 cargohold-c5564162515f5d6afafe9082e8dbb2ed63a9d256.zip |
Admin interfaces
Diffstat (limited to 'assets')
-rw-r--r-- | assets/admin.css | 41 | ||||
-rw-r--r-- | assets/cargohold.css | 15 |
2 files changed, 52 insertions, 4 deletions
diff --git a/assets/admin.css b/assets/admin.css index 4fdc5fb..bf93fbc 100644 --- a/assets/admin.css +++ b/assets/admin.css @@ -26,20 +26,53 @@ div.entry { vertical-align: center; } -div.entry a.button { +a.button { padding: 0.5em; background-color: #c8e; text-decoration: none; margin-left: 0.5em; - display: block; + /*display: block;*/ border-radius: 0.5em; } -a.delete { +.info, .permission { + padding: 0.5em; + background-color: #c8e; + border-radius: 0.5em; + margin-left: 0.5em; + text-decoration: none; + color: #453; +} + +.button.delete { background-color: #f79 !important; } -a.directory { +.button.active { + background-color: #569; +} + +.permission { + background-color: #366; + color: #acb; +} + +.permission.disabled { + text-decoration: line-through; + background-color: #636; +} + +a.entry { text-decoration: none; color: #aade88; } + +span.dirname { + font-weight: bold; + font-style: italic; +} + +#topmenu, #action { + display: inline-flex; + margin: 1em; +} diff --git a/assets/cargohold.css b/assets/cargohold.css index 747b916..df40b98 100644 --- a/assets/cargohold.css +++ b/assets/cargohold.css @@ -98,9 +98,14 @@ html { background-color: #728; padding: 0.5em; text-align: left; +} + +#header h1 { font-size: 120%; font-weight: bold; font-family: sans; + display: inline-block; + margin: 0; } #container { @@ -167,3 +172,13 @@ html { border-radius: 1em; background-color: #8885; } + +.footer, .footer a { + text-align: right; + text-decoration: none; + color: #777; +} + +.footer { + padding: 1em; +} |