Advertisement
Guest User

FloatingSidebar right position CSS

a guest
May 26th, 2021
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.57 KB | None | 0 0
  1. #sidebar, #bookmarksPanel, #bookmarks-view, #history-panel, #historyTree {
  2. background: #464649 !important;
  3. box-shadow: 0px 0px 1px 1px gray inset, 0px 0px 1px 1px white;
  4. color: #F5F7FA !important;
  5. font-family: Arial !important;
  6. font-size: 12px !important;
  7.  
  8.  
  9. }
  10.  
  11. #sidebar-box
  12. {color: #D6D6D9 !important;
  13. text-shadow: black 1px 1px 1px !important;
  14. margin: 1px !important;
  15. padding: 0 !important;
  16. overflow: hidden !important;
  17. border: solid 0.2em lightblue;
  18. border-bottom-color: lightblue;
  19. -moz-appearance: none !important;
  20. position: fixed !important;
  21. display: block;
  22. top: 18% !important;
  23. left: 96% !important;
  24. height: 14px !important;
  25. width: 20px !important;
  26. z-index: 99999 !important;
  27. background: #424142 !important;
  28. border-radius: 1px !important;
  29. opacity: .6 !important;
  30. transition-duration: 0.2s !important;
  31. transition-delay: .2s !important;
  32. }
  33.  
  34. #sidebar-box:hover
  35. {overflow: visible !important;
  36. max-width: none !important;
  37. top: 10% !important;
  38. left: 83% !important;
  39. width: 200px !important;
  40. height: 820px !important;
  41. border: 2px solid silver !important;
  42. border-radius: 1px 1px 1px 1px !important;
  43. opacity: .9 !important;
  44. transition-duration: 0.2s !important;
  45. transition-delay: 0.2s !important;
  46. }
  47.  
  48. #sidebar
  49. {
  50. max-width: none !important;
  51. min-width: 0 !important;
  52. width: 100% !important;
  53. height: 800px !important;
  54. }
  55.  
  56. #sidebar-header
  57. {
  58.  
  59. font-weight: normal !important;
  60. margin-top: -1px !important;
  61. }
  62.  
  63.  
  64. #sidebar-splitter
  65. {
  66. display: none !important;
  67. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement