simplecarousel.css 291 B

12345678910111213141516
  1. .image-carousel {
  2. position: absolute;
  3. color: white;
  4. background-color: rgba(128, 128, 128, 0.5);
  5. border: none;
  6. border-radius: 8px;
  7. font-size: 48px;
  8. top: 45%;
  9. right: 5px;
  10. }
  11. .image-carousel:before {
  12. content: ">";
  13. }
  14. .image-carousel:hover {
  15. background-color: rgba(192, 192, 192, 0.5);
  16. }