mirror of
https://github.com/johannesjo/super-productivity.git
synced 2026-01-23 02:36:05 +00:00
26 lines
529 B
HTML
26 lines
529 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<title>Super Productivity Overlay</title>
|
|
<link
|
|
rel="stylesheet"
|
|
href="overlay.css"
|
|
/>
|
|
</head>
|
|
<body>
|
|
<div id="overlay-container">
|
|
<div id="content">
|
|
<div id="task-title">No active task</div>
|
|
<div id="time-display">--:--</div>
|
|
</div>
|
|
<button
|
|
id="show-main"
|
|
title="Show main window"
|
|
>
|
|
▲
|
|
</button>
|
|
</div>
|
|
<script src="overlay.js"></script>
|
|
</body>
|
|
</html>
|