Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 7th, 2012  |  syntax: None  |  size: 0.53 KB  |  hits: 12  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. /** http://docs.sublimevideo.net/playlists **/
  2.  
  3. /*
  4. * You probably want to set the same width and height
  5. * that you have set to your <video> elements.
  6. */
  7. .playlist .video_wrap {
  8.   width:640px;
  9.   height:360px;
  10.   display:none;
  11. }
  12. .playlist .video_wrap.active {
  13.   display:block;
  14. }
  15.  
  16. /* This will make distinguishable the currently selected thumbnail */
  17. .playlist li.active {
  18.   background:#000;
  19. }
  20.  
  21. /* This will create a simple hover effect */
  22. .playlist li img {
  23.   opacity:.7;
  24. }
  25. .playlist li a:hover img, .playlist li.active img {
  26.   opacity:1;
  27. }