| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- .example-radio-group {
- display: flex;
- flex-direction: column;
- margin: 15px 0;
- align-items: flex-start;
- }
- .example-radio-button {
- margin: 5px;
- }
- .gallery-container{
- width: 100%;
- height: 256px;
- position: relative;
- overflow: hidden;
- }
- .gallery-container img{
- height: 100%;
- width: 100%;
- display: block;
- margin-left: auto;
- margin-right: auto;
- object-fit: contain;
- }
- .backward-button{
- position: absolute;
- top: calc(50% - 24px);
- left: 8px;
- z-index: 9999;
- background-color: rgba(255, 255, 255, 0.75);
- box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.25);
- }
- .forward-button{
- position: absolute;
- top: calc(50% - 24px);
- right: 8px;
- z-index: 9999;
- background-color: rgba(255, 255, 255, 0.75);
- box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.25);
- }
|