Advertisement
althindor

Basic Media with Tooltip

Aug 23rd, 2018
375
1
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.79 KB | None | 1 0
  1. /* Media */
  2.  
  3. .media_panel, .media_panel h2 {
  4.  margin: 0;
  5.  position: fixed;
  6.  overflow: hidden;
  7. }
  8.  
  9. .media_panel {
  10.  background: url('https://i.imgur.com/vcNz49l.png') center -101px #000000;
  11.  background-size: 34px auto;
  12.  width: 36px;
  13.  height: 36px !important;
  14.  padding: 0;
  15.  top: 35px;
  16.  left: 7px;
  17.  border-radius: 5px;
  18.  box-sizing: border-box;
  19. }
  20.  
  21. .media_panel h2 {
  22.  display: none;
  23.  background: #F4F0E4;
  24.  color: #000000;
  25.  font-weight: normal;
  26.  text-transform: capitalize;
  27.  padding: 5px;
  28.  top: 64px;
  29.  left: 35px;
  30.  border: 1px solid rgba(0,0,0,.5);
  31.  box-shadow: 0 0 0 1px #F4F0E4;
  32.  pointer-events: none;
  33.  z-index: 999;
  34. }
  35. .media_panel:hover h2 {display: block;}
  36.  
  37. .media_panel object {
  38.  width: 200px;
  39.  height: 200px;
  40.  position: absolute;
  41.  bottom: 0;
  42.  left: -9px;
  43.  opacity: .001;
  44. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement