diff options
author | vincent-peugnet <v.peugnet@free.fr> | 2019-08-21 17:23:28 +0200 |
---|---|---|
committer | vincent-peugnet <v.peugnet@free.fr> | 2019-08-21 17:23:28 +0200 |
commit | b146952bb3ebacec8d4f1dd806ea5a9955bd3693 (patch) | |
tree | 2e4110ff5a7ef43dc7a067440011de5f1eae9cae /assets | |
parent | 59e670424ef9d7769e4252fe0f83e42d39a5c9b4 (diff) | |
download | wcms-b146952bb3ebacec8d4f1dd806ea5a9955bd3693.tar.gz wcms-b146952bb3ebacec8d4f1dd806ea5a9955bd3693.zip |
css style update
Diffstat (limited to 'assets')
-rw-r--r-- | assets/css/home.css | 23 |
1 files changed, 22 insertions, 1 deletions
diff --git a/assets/css/home.css b/assets/css/home.css index 1c056b8..1a4fa1d 100644 --- a/assets/css/home.css +++ b/assets/css/home.css @@ -28,24 +28,30 @@ main.home { aside.home { display: flex; background-color: darkgrey; + border-top: 1px solid grey; + border-bottom: 1px solid grey; } aside.home details, aside.home span { width: 100%; + max-width: 280px; } aside.home details .submenu, aside.home summary { background-color: darkgrey; + border-left: 1px solid grey; } aside.home .submenu { position: absolute; border: solid 1px dimgrey; + width: 20%; + max-width: 280px; } @@ -64,9 +70,24 @@ aside.home details#bookmarks ul { } + +aside.home summary { + color: grey; +} + +aside.home details > summary::-webkit-details-marker { + display: none; +} + + +aside.home summary:hover { + color: black; + cursor: pointer; +} + + details#selection code { overflow: auto; - max-width: 300px; display: block; white-space: nowrap; color: #7b97b9; |