Guest User

Untitled

a guest
Jun 21st, 2018
181
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.06 KB | None | 0 0
  1. /**
  2.  * @file
  3.  *   menu-hovers.css
  4.  *   left side menu, show image tooltips while hovering
  5.  *
  6.  * @package
  7.  *   totalbounce.co.uk
  8.  *
  9.  * @author
  10.  *    Adrian Dimitroff <dimitrov.adrian@gmail.com>
  11.  */
  12.  
  13. #menu-sidebar-choices .menu-item a .menu-hovers {
  14.     position: absolute;
  15.     width: 180px;
  16.     display: none;
  17.     margin-left: -190px;
  18.     text-align: left;
  19.     background: transparent url(menu-hovers-background.png) 100% 0 no-repeat;
  20.     border-radius: 3px;
  21.     box-shadow: -8px 1px 8px rgba(0, 0, 0, .4);
  22.     z-index: 100;
  23. }
  24.  
  25. #menu-sidebar-choices .menu-item a .menu-hovers-right {
  26.     margin-left: 206px !important;
  27.     background-position: 0 0 !important;
  28.     box-shadow: 8px 1px 8px rgba(0, 0, 0, .4);
  29.     text-align: right;
  30. }
  31.  
  32. #menu-sidebar-choices .menu-item a .menu-hovers  img {
  33.     margin: 8px 14px 8px 8px;
  34.     border: 2px solid #f47047;
  35.     width: 150px;
  36.     height: auto;
  37.     max-height: 150px;
  38.     border-radius: 3px;
  39. }
  40.  
  41. #menu-sidebar-choices .menu-item a .menu-hovers-right img {
  42.     margin: 8px 8px 8px 14px;
  43. }
  44.  
  45. #menu-sidebar-choices .menu-item a:hover .menu-hovers {
  46.     display: block;
  47. }
Add Comment
Please, Sign In to add comment