Initial commit...

This commit is contained in:
2021-02-18 17:45:52 -06:00
parent dc3906fa9b
commit 1180e3171f
2159 changed files with 45470 additions and 2 deletions

View File

@@ -0,0 +1,8 @@
# Weekday-Google-Calendar
Embed a Weekday Google calendar to any websit!
To use, simply open either of the text files and copy the code to the requested tag.
<br/>
Insert your Google calendar src url from your generated iframe over to the iframe you copyed from the text file.
<br/>
Enjoy!

View File

@@ -0,0 +1,21 @@
<!-- COPY THIS INTO STYLE TAG IN HEAD--->
.cal-container {
display: block;
float: left;
height: 400;
width: 40%;
overflow: hidden;
}
<!-- COPY THIS TO BODY TAG -->
<div class="cal-container">
<iframe width="142%"
height="400"
style="margin-left: -0.45em; border-width: 0;"
frameborder="0"
scrolling="no"
src="">
</iframe>
</div>

View File

@@ -0,0 +1,36 @@
<!-- COPY THIS INTO STYLE TAG IN HEAD--->
#outter-container {
display: block;
}
.cal-container, .vBar {
float: left;
}
.cal-container {
height: 400;
width: 50%;
overflow: hidden;
}
.vBar {
background: #e3e9ff;
height: 375px;
width: 0.5em;
margin-top: 1.55em;
}
<!-- COPY THIS TO BODY TAG -->
<div id="outter-container">
<div class="cal-container">
<iframe width="141%"
height="400"
style="border-width: 0;"
frameborder="0"
scrolling="no"
src="">
</iframe>
</div>
<div class="vBar">
</div>
</div>