style.css 412 B

1234567891011121314151617181920212223242526
  1. .slide0, .slide4, .slide1, .slide2, .slide3 {
  2. width: 10vw;
  3. height: 100px;
  4. border: 2px solid black;
  5. text-align: center;
  6. float: left;
  7. background-color: #fff;
  8. }
  9. .slide4 {
  10. position: relative;
  11. z-index: -1;
  12. }
  13. .slide0 {
  14. position: relative;
  15. z-index: -1;
  16. }
  17. .slide.center {
  18. background-color: #666;
  19. transition: background-color 1000ms linear;
  20. }
  21. button.left, button.right {
  22. height: 104px;
  23. float: left;
  24. }