ayush5710's picture
Update style.css
811bc55
raw
history blame
No virus
1.31 kB
.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;
*/
overflow: hidden;
display: none;
/* margin-left: 57vw; */
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; /* Shift the iframe content up by 100px to hide the top portion */
width: 100%;
height: 985px; /* Set the total height of your iframe content (visible + hidden) */
/* height: 1200px; */
overflow: hidden;
border-radius: 5%;
}
.iframe-container iframe::-webkit-scrollbar {
width: 0; /* Hide the scrollbar */
height: 0;
}
.click {
position: fixed;
bottom: 31px; /* Adjust the distance from the bottom as needed */
right: 20px; /* Adjust the distance from the right as needed */
padding: 10px 20px;
background-color: rgba(249, 108, 108, 0.8);
color: #fff;
border: none;
border-radius: 6px;
cursor: pointer;
z-index: 9999;
}