diff --git a/index.html b/index.html
index d88d1cc..3ef2e54 100644
--- a/index.html
+++ b/index.html
@@ -7,6 +7,7 @@
Comprehensive Python Cheatsheet
+
@@ -141,6 +142,49 @@ pre.prettyprint {
padding: 1em;
white-space: pre-wrap;
}
+
+#return-to-top {
+ position: fixed;
+ bottom: 20px;
+ right: 20px;
+ background: rgb(0, 0, 0);
+ background: rgba(0, 0, 0, 0.2);
+ width: 50px;
+ height: 50px;
+ display: block;
+ text-decoration: none;
+ -webkit-border-radius: 35px;
+ -moz-border-radius: 35px;
+ border-radius: 35px;
+ display: none;
+ -webkit-transition: all 0.3s linear;
+ -moz-transition: all 0.3s ease;
+ -ms-transition: all 0.3s ease;
+ -o-transition: all 0.3s ease;
+ transition: all 0.3s ease;
+}
+
+#return-to-top i {
+ color: #fff;
+ margin: 0;
+ position: relative;
+ left: 16px;
+ top: 13px;
+ font-size: 19px;
+ -webkit-transition: all 0.3s ease;
+ -moz-transition: all 0.3s ease;
+ -ms-transition: all 0.3s ease;
+ -o-transition: all 0.3s ease;
+ transition: all 0.3s ease;
+}
+
+#return-to-top:hover {
+ background: rgba(0, 0, 0, 0.85);
+}
+
+#return-to-top:hover i {
+ color: #ffffff;
+}
@@ -149,6 +193,7 @@ pre.prettyprint {
Jure Šorn
+
Comprehensive Python Cheatsheet
Download text file, Fork me on GitHub or Check out FAQ.
@@ -1817,7 +1862,7 @@ simpleaudio.play_buffer(frames_b, 1,
-
+