Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added About Page #141

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
52 changes: 52 additions & 0 deletions about.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}

@font-face {
font-family: "Roboto";
src: url("Roboto/Roboto-Bold.ttf") format("truetype");
}

body {
background: url("./images/bg.jpg");
/* background: #242a36; */
min-height: 100vh;
color: #fff;
}

.container {
text-align: center;
height: 90vh;
perspective: 20cm;
}
.side {
height: 8rem;
display: flex;
justify-content: center;
align-items: center;
color: #ffffff;
}
h1 {
font-size: 2.5rem;
cursor: default;
/* text-shadow: -5px 5px 5px #000000c9; */
}

h2{
text-align: center;
margin-top: -550px;
}


p{
font-size: 24px;
margin-top: 10px;
margin-left: 140px;
margin-right: 140px;
}

#saved-scroll-heading{
font-size: 40px;
}
39 changes: 39 additions & 0 deletions about.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Scrroll In About Me</title>
<link href="about.css" rel="stylesheet" />
<script src="./utils/sweetalert2.all.min.js"></script>
</head>

<body>
<div class="container">
</div>
<h2 id="saved-scroll-heading">
Scrroll-In<a target="_blank" href="about.html"
><img src="./images/icon-32.png" height="30" width="30"
/></a></h2><br>
<p align="center">
✨ Scrroll-In is an extension allows you to save the scroll position of the page and then revisit the page at any time to continue where you left.
Also, you can save multiple scrolls from the page and fetch the last saved scroll.
If you dont want a scroll you can simply delete it.
Extension allows you to see all the saved scrolls arranged in the newly first order where you can delete any specific scroll or clear all the scrolls at once.
You can use update the scroll which will replace the last saved scroll with the current one.
You can add customizable keyboard shortcuts to save, fetch or delete scrolls without having to open the extension popup.
The extension auto fetches the last saved scroll position on page load, if page has any saved scroll.

</p><br>
<p align="center">
📜 Completely free and open source:<br>
Scrroll-In was and will always be free to use and open source.<br> Feel free to open an issue for feature request or bug report on the issues page on Github.
</p><br><br>
<p align="center">
<a href="https://github.com/devfolioco/scrroll-in/"><img src="./images/github_icon.png" alt="github" height="50" width="50"></a>
<a href="https://twitter.com/psuranas/"><img src="./images/twitter_icon.png" alt="twitter" height="50" width="50" style="margin-left: 50px;"></a>
</p><br>
<p align="center">
Version - 2.9
</p>
</body>
</html>
Binary file added images/github_icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/info-2-16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/info-2-32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/twitter_icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions popup.css
Original file line number Diff line number Diff line change
Expand Up @@ -122,3 +122,8 @@ h2 {
a {
color: white;
}

.about {
float: right;
margin-right: -12px;
}
4 changes: 4 additions & 0 deletions popup.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,9 @@
</div>
<script src="popup.js" type="module"></script>
<div id="tip"></div>
<div class="about">
<a target="_blank" href="about.html"
><img src="./images/info-2-16.png" height="13" width="14"
/></a></div>
</body>
</html>