An open API service indexing awesome lists of open source software.

https://github.com/thyripian/thyripian.github.io

For web widgets
https://github.com/thyripian/thyripian.github.io

Last synced: 4 months ago
JSON representation

For web widgets

Awesome Lists containing this project

README

          



Return to Top Widget





#returnTopButton {
position: fixed;
bottom: 20px;
left: 50%;
transform: translateX(-50%);
z-index: 1000;
padding: 10px 24px;
background-color: #1A73E8; /* Google's search button blue */
color: white;
border: none;
border-radius: 24px; /* Rounded corners */
cursor: pointer;
font-size: 14px;
font-weight: 500;
font-family: 'Roboto', sans-serif; /* Google's Roboto font */
box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
text-transform: none;
}

#returnTopButton:hover {
background-color: #1765c1; /* Slightly darker blue for hover */
}

#returnTopButton:focus {
outline: none;
}

Return to Top


function scrollToTop() {
window.scrollTo({ top: 0, behavior: 'smooth' });
}