File size: 1,004 Bytes
cbb5a66 ed71376 cbb5a66 9b9c3a3 cbb5a66 9b9c3a3 cbb5a66 9b9c3a3 cbb5a66 d76f5f9 cbb5a66 d76f5f9 cbb5a66 ed71376 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 |
.iframe-container {
position: relative;
position: fixed;
width: 500px; /* Set the desired width for your iframe */
height: 700px; /* Set the desired height for your visible iframe content (450 - 100) */
overflow: hidden;
display: none;
right: 50px;
z-index: 999;
top: 3.2em;
transition: display 0.5s ease-in-out;
border-radius: 5%;
}
.iframe-container iframe {
position: absolute;
top: -410px;
width: 100%;
height: 985px;
/* height: 1200px; */
overflow: hidden;
border-radius: 5%;
}
.click {
position: fixed;
bottom: 35px; /* Adjust the distance from the bottom as needed */
right: 20px; /* Adjust the distance from the right as needed */
padding: 10px 20px;
background-color: rgba(233, 113, 33, 0.7);
color: #fff;
border: none;
border-radius: 6px;
cursor: pointer;
z-index: 9999;
}
|