style.css 675 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. body {
  2. min-height: 3000px;
  3. }
  4. .element {
  5. width: 200px;
  6. height: 200px;
  7. background-color: #fe8;
  8. position: absolute;
  9. z-index: 6;
  10. }
  11. .target {
  12. width: 300px;
  13. height: 50px;
  14. margin: 0 35%;
  15. background-color: #4e9;
  16. }
  17. .container {
  18. height: 600px;
  19. overflow: scroll;
  20. width: 600px;
  21. border: 20px solid #CCC;
  22. margin-top: 100px;
  23. }
  24. body {
  25. padding: 15px;
  26. }
  27. body > .container {
  28. margin: 0 auto;
  29. }
  30. .pad {
  31. height: 400px;
  32. width: 100px;
  33. }
  34. .instructions {
  35. width: 100%;
  36. text-align: center;
  37. font-size: 24px;
  38. padding: 15px;
  39. background-color: rgba(210, 180, 140, 0.4);
  40. margin: -15px -15px 0 -15px;
  41. }