diff options
author | Kukielka <kukielka58@gmail.com> | 2018-04-20 12:42:53 +0200 |
---|---|---|
committer | Kukielka <kukielka58@gmail.com> | 2018-04-20 12:42:53 +0200 |
commit | e6476d577f237844af45156313ff76dc3f6abd49 (patch) | |
tree | 9d7c6261ccc305166afa3ac15343131b2799753f /common/css/main.css | |
parent | 4fa25fda8f69ce6b1f40b9d3144dff9ff3849549 (diff) | |
download | simple-dash-fork-e6476d577f237844af45156313ff76dc3f6abd49.zip |
Cleanup
Diffstat (limited to 'common/css/main.css')
-rw-r--r-- | common/css/main.css | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/common/css/main.css b/common/css/main.css new file mode 100644 index 0000000..fa0b1d3 --- /dev/null +++ b/common/css/main.css @@ -0,0 +1,65 @@ +html { + height: 100%; + width: 100%; +} + +body { + z-index: 1; + height: 100%; + width: 100%; + background-position: center; + background-attachment: fixed; +} + +.itemlist { + border-radius: 6px; + background-color: rgba(0, 0, 0, .4); + padding: 20px; + box-sizing: border-box; +} + +.itemlist a { + color: #fff; +} + +#wrapper { + font-size: 80px; + position: fixed; + left: 50%; + top: 50%; + transform: translate(-50%, -50%); + padding-bottom: 3px; + width: fit-content; + height: auto; + max-width: 80%; + max-height: 85%; + overflow: auto; + display: flex; + overflow-y: scroll; +} + +#wrapper a { + transition: .3s all; +} + +#wrapper a:hover { + color: #c4c4c4; +} + +#wrapper .link { + display: inline-block; + width: 33%; + float: left; + text-align: center; +} + +#wrapper::-webkit-scrollbar { + width: 10px; + background-color: transparent; +} + +#wrapper::-webkit-scrollbar-thumb { + border-radius: 6px; + -webkit-box-shadow: inset 0 0 3px rgba(0,0,0,.4); + background-color: rgba(255,255,255,.2); +}
\ No newline at end of file |