Created
October 29, 2024 21:30
-
-
Save idontcalculate/01b85d4a1adc15b4e83d171bd8b96563 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Hyperfocus</title> | |
<style> | |
body { | |
font-family: Arial, sans-serif; | |
width: 200px; | |
padding: 10px; | |
} | |
.control { | |
margin-bottom: 10px; | |
} | |
label { | |
display: block; | |
font-size: 14px; | |
margin-bottom: 5px; | |
} | |
button { | |
padding: 5px; | |
font-size: 14px; | |
width: 100%; | |
} | |
</style> | |
</head> | |
<body> | |
<h2>Hyperfocus Settings</h2> | |
<!-- Font Size Control --> | |
<div class="control"> | |
<label for="font-size">Font Size:</label> | |
<input type="range" id="font-size" min="12" max="24" value="16"> | |
</div> | |
<!-- Background Color Control --> | |
<div class="control"> | |
<label for="bg-color">Background Color:</label> | |
<input type="color" id="bg-color" value="#ffffff"> | |
</div> | |
<!-- Summarize Button --> | |
<div class="control"> | |
<button id="summarize-btn">Summarize Page</button> | |
</div> | |
<script src="popup.js"></script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment