test.css 524 B

123456789101112131415161718192021222324252627282930313233343536
  1. body {
  2. font-family: sans-serif;
  3. }
  4. .draggie {
  5. width: 100px;
  6. height: 100px;
  7. background: #F90;
  8. }
  9. .draggie.is-pointer-down { background: #09F; }
  10. .draggie.is-dragging { opacity: 0.7; }
  11. .test {
  12. border: 2px solid transparent;
  13. margin-bottom: 20px;
  14. padding: 10px;
  15. }
  16. .test.running { border-color: #F90; }
  17. .test.running h2 { color: #F90; }
  18. @media screen and (min-width: 640px) {
  19. .column {
  20. float: left;
  21. }
  22. .column--left {
  23. width: 30%;
  24. margin-right: 4%;s
  25. }
  26. .column--right {
  27. width: 66%;
  28. }
  29. }