Skip to content

Commit 770b963

Browse files
committed
Add follow button
1 parent a512ce7 commit 770b963

File tree

1 file changed

+36
-10
lines changed

1 file changed

+36
-10
lines changed

index.html

Lines changed: 36 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
height: 0;
99
overflow: hidden;
1010
}
11-
.responsive-google-slides iframe {
11+
.responsive-google-slides #gslides {
1212
border: 0;
1313
position: absolute;
1414
top: 0;
@@ -25,24 +25,30 @@
2525
a:hover { color: #ffffff; }
2626
a:active { color: #ff4040; text-decoration:none; font-weight:normal; }
2727

28-
#triangle-topleft {
28+
#triangle-topright {
2929
width: 0;
3030
height: 0;
3131
border-top: 150px solid #9020d1bb;
3232
border-left: 150px solid transparent;
3333
position: absolute;
3434
}
35-
36-
#container {
37-
position: relative;
35+
36+
#triangle-bottomright {
37+
width: 0;
38+
height: 0;
39+
border-bottom: 150px solid #00000080;
40+
border-left: 150px solid transparent;
3841
}
3942

40-
#triangle-topleft, #overlay {
43+
#triangle-topright, #overlay-topright, #triangle-bottomright, #overlay-bottomright {
4144
position: absolute;
4245
color: white;
4346
right: 0;
4447
}
45-
#overlay {
48+
#triangle-bottomright, #overlay-bottomright {
49+
bottom: 0;
50+
}
51+
#overlay-topright {
4652
margin-top: 32px;
4753
transform: rotate(45deg);
4854
text-align: center;
@@ -51,12 +57,32 @@
5157
a:link { color: white; };
5258
a:visited { color: white; }
5359
}
60+
#overlay-bottomright {
61+
margin-bottom: 50px;
62+
margin-right: -10px;
63+
text-align: center;
64+
color: white;
65+
font-weight: bold;
66+
a:link { color: white; };
67+
a:visited { color: white; }
68+
}
69+
.twitter-follow-button {
70+
transform: rotate(-45deg);
71+
}
5472
</style>
5573

5674
<body>
5775
<div class="responsive-google-slides">
58-
<iframe src="https://docs.google.com/presentation/d/e/2PACX-1vR2pnXIRht6t5GTsONlnrrqFY5qcU29H2zwN-cUeNIkTrEcJW0-v48QZyTL2C0hd8puXIMZOYSXnaCc/embed?start=true&loop=true&delayms=2000&rm=minimal"></iframe>
59-
<div id="triangle-topleft"></div>
60-
<div id="overlay"><a href="https://www.youtube.com/watch?v=dg0g15Qv5Fo&t=1s">ContainerDays<br/>Recording</a></div>
76+
<iframe src="https://docs.google.com/presentation/d/e/2PACX-1vR2pnXIRht6t5GTsONlnrrqFY5qcU29H2zwN-cUeNIkTrEcJW0-v48QZyTL2C0hd8puXIMZOYSXnaCc/embed?start=true&loop=true&delayms=2000&rm=minimal" id="gslides"></iframe>
77+
<div id="triangle-topright"></div>
78+
<div id="overlay-topright"><a href="https://www.youtube.com/watch?v=dg0g15Qv5Fo&t=1s">ContainerDays<br/>Recording</a></div>
79+
80+
<div id="triangle-bottomright"></div>
81+
<div id="overlay-bottomright"><a href="https://twitter.com/the_sttts?ref_src=twsrc%5Etfw" class="twitter-follow-button" data-show-count="false">Follow @the_sttts</a><script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
82+
83+
84+
85+
86+
</div>
6187
</div>
6288
</body>

0 commit comments

Comments
 (0)