You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

45 rivejä
906 B

  1. const imagesStyles = {
  2. imgFluid: {
  3. maxWidth: "100%",
  4. height: "auto"
  5. },
  6. imgRounded: {
  7. borderRadius: "6px !important"
  8. },
  9. imgRoundedCircle: {
  10. borderRadius: "50% !important"
  11. },
  12. imgRaised: {
  13. boxShadow:
  14. "0 5px 15px -8px rgba(0, 0, 0, 0.24), 0 8px 10px -5px rgba(0, 0, 0, 0.2)"
  15. },
  16. imgGallery: {
  17. width: "100%",
  18. marginBottom: "2.142rem"
  19. },
  20. imgCardTop: {
  21. width: "100%",
  22. borderTopLeftRadius: "calc(.25rem - 1px)",
  23. borderTopRightRadius: "calc(.25rem - 1px)"
  24. },
  25. imgCardBottom: {
  26. width: "100%",
  27. borderBottomLeftRadius: "calc(.25rem - 1px)",
  28. borderBottomRightRadius: "calc(.25rem - 1px)"
  29. },
  30. imgCard: {
  31. width: "100%",
  32. borderRadius: "calc(.25rem - 1px)"
  33. },
  34. imgCardOverlay: {
  35. position: "absolute",
  36. top: "0",
  37. right: "0",
  38. bottom: "0",
  39. left: "0",
  40. padding: "1.25rem"
  41. }
  42. };
  43. export default imagesStyles;