diff options
author | thmsdt <thomas.kulik@telekom.de> | 2022-11-17 11:19:04 +0100 |
---|---|---|
committer | Thomas Kulik <thomas.kulik@telekom.de> | 2022-11-17 10:27:54 +0000 |
commit | 8677050e76823dd78fae438a309d44b367e9bda5 (patch) | |
tree | 967e162eb19e430369c8a1318b472f32a3c914b8 | |
parent | 6dc43f47ec278e58122a1d0bc256c98ede08faab (diff) |
fix ribbon.csskohn
Issue-ID: DOC-798
Signed-off-by: thmsdt <thomas.kulik@telekom.de>
Change-Id: Id67d66721a97938484cb7d69756101aee95a4874
(cherry picked from commit 3d3a5019efcfbc0ae9da1adf7c9484419f6b6027)
-rw-r--r-- | docs/_static/css/ribbon.css | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/docs/_static/css/ribbon.css b/docs/_static/css/ribbon.css index 6008cb1..7949130 100644 --- a/docs/_static/css/ribbon.css +++ b/docs/_static/css/ribbon.css @@ -1,20 +1,20 @@ .ribbon { - z-index: 1000; - background-color: #a00; - overflow: hidden; - white-space: nowrap; - position: fixed; - top: 25px; - right: -50px; - -webkit-transform: rotate(45deg); - -moz-transform: rotate(45deg); - -ms-transform: rotate(45deg); - -o-transform: rotate(45deg); - transform: rotate(45deg); - -webkit-box-shadow: 0 0 10px #888; - -moz-box-shadow: 0 0 10px #888; - box-shadow: 0 0 10px #888; - + z-index: 1000; + background-color: #a00; + overflow: hidden; + white-space: nowrap; + position: fixed; + top: 25px; + right: -50px; + -webkit-transform: rotate(45deg); + -moz-transform: rotate(45deg); + -ms-transform: rotate(45deg); + -o-transform: rotate(45deg); + transform: rotate(45deg); + -webkit-box-shadow: 0 0 10px #888; + -moz-box-shadow: 0 0 10px #888; + box-shadow: 0 0 10px #888; + } .ribbon a { @@ -59,5 +59,5 @@ /* fix width of the screen */ .wy-nav-content { - max-width: none; + max-width: 800px; } |