group-pending.component.css 785 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. .example-radio-group {
  2. display: flex;
  3. flex-direction: column;
  4. margin: 15px 0;
  5. align-items: flex-start;
  6. }
  7. .example-radio-button {
  8. margin: 5px;
  9. }
  10. .gallery-container{
  11. width: 100%;
  12. height: 256px;
  13. position: relative;
  14. overflow: hidden;
  15. }
  16. .gallery-container img{
  17. height: 100%;
  18. width: 100%;
  19. display: block;
  20. margin-left: auto;
  21. margin-right: auto;
  22. object-fit: contain;
  23. }
  24. .backward-button{
  25. position: absolute;
  26. top: calc(50% - 24px);
  27. left: 8px;
  28. z-index: 9999;
  29. background-color: rgba(255, 255, 255, 0.75);
  30. box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.25);
  31. }
  32. .forward-button{
  33. position: absolute;
  34. top: calc(50% - 24px);
  35. right: 8px;
  36. z-index: 9999;
  37. background-color: rgba(255, 255, 255, 0.75);
  38. box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.25);
  39. }