-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathiframe.html
More file actions
38 lines (38 loc) · 941 Bytes
/
Copy pathiframe.html
File metadata and controls
38 lines (38 loc) · 941 Bytes
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
<style>
.iframe-container {
position: relative;
top: 0;
left: 0;
width: 100%;
height: 1080px;
border: 0;
display: block;
}
.curbside-iframe {
position: absolute;
overflow: hidden;
width: 100%;
height: 100%;
border: 0;
display: block;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
.iframe-container {
height: 2100px;
}
}
@media screen and (min-width: 371px) and (max-width: 767px) {
.iframe-container {
height: 2800px;
}
}
@media screen and (max-width: 370px) {
.iframe-container {
height: 2800px;
margin-left: 5px;
}
}
</style>
<div class="iframe-container">
<iframe class="curbside-iframe" scrolling="no" src="https://openpledge.github.io/virtualcurbsidedonation"></iframe>
</div>