Advertisement
Guest User

Untitled

a guest
Mar 30th, 2015
217
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. <div class="filler">filler</div>
  2. <div class="container">
  3. <div class="offset">
  4. <div class="fixed"><div class="content"></div></div>
  5. </div>
  6. </div>
  7.  
  8. .filler {
  9. height: 100px;
  10. background: yellow;
  11. }
  12. .offset {
  13. height: 100px;
  14. width:100px;
  15. background:blue;
  16. float:right;
  17. position:static;
  18. }
  19. .container {
  20. width:200px;
  21. }
  22. .fixed {
  23. position: fixed;
  24. bottom:10vh;
  25. left:10vw;
  26. max-height: 80vh;
  27. opacity: 0.5;
  28. z-index: 120;
  29. margin: 0px;
  30. overflow-y: scroll;
  31. width: 80vw;
  32. background: red;
  33. -webkit-transition: all 0.4s linear;
  34. -moz-transition: all 0.4s linear;
  35. -o-transition: all 0.4s linear;
  36. -ms-transition: all 0.4s linear;
  37. transition: all 0.4s linear;
  38. }
  39.  
  40. .content {
  41. height: 1000px;
  42. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement