Advertisement
Guest User

Untitled

a guest
Feb 20th, 2019
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.82 KB | None | 0 0
  1. <script type='text/javascript' >
  2. $(document).ready(function() {
  3. CursorDivScroll( 'repertoiredetails', 40, 10 ).noHorizontal();
  4. });
  5. </script>
  6.  
  7. <div id="repertoiredetails">
  8. <p>content</p>
  9. </div><!-- close repertoiredetails-->
  10.  
  11. #repertoiredetails {
  12. background-color:#000;
  13. width:400px;
  14. opacity:0.7; filter:alpha(opacity=70);
  15. margin-top:140px;
  16. float:left;
  17. height:auto;
  18. display:none;
  19. margin-left:-2px;
  20. padding-top:5px;
  21. border-radius:5px;
  22. -moz-border-radius:5px; /* Firefox 3.6 and earlier */
  23. z-index:999;
  24. }
  25.  
  26. #repertoiredetails {
  27. cursor: url(../images/arrow.png), auto;
  28. position:relative;
  29.  
  30. }
  31.  
  32. #repertoiredetails p {
  33. text-align:justify;
  34. text-justify:inter-word;
  35. color:#999;
  36. font-family:'Arial Narrow', Arial, sans-serif;
  37. font-size:13px;
  38. width:400px;
  39. padding:20px;
  40. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement