Skip to content

Commit 0a30912

Browse files
committed
Github Link
1 parent 8f069ce commit 0a30912

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Fomodoro - Beautiful Timer
22

3+
[![GitHub](https://img.shields.io/badge/GitHub-View%20Source-181717?style=for-the-badge&logo=github)](https://github.com/hasinhayder/fomodoro)
4+
35
A simple Pomodoro timer built with HTML, CSS, and JS. The timer uses the full browser width to display a large, visually pleasing countdown. Includes a settings panel with theme switching, configurable durations (work/short/long), auto-start toggle, and sessions until long break.
46

57
## Features

index.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
<header class="header">
1414
<h1 class="logo">Pomodoro</h1>
1515
<div class="header-controls">
16+
<a href="https://github.com/hasinhayder/fomodoro" target="_blank" class="icon-btn" title="View on GitHub">🐙</a>
1617
<button @click="toggleSettings()" class="icon-btn" :aria-expanded="settingsOpen" aria-controls="settings" title="Settings (Cmd+K/Ctrl+K)">⚙️</button>
1718
</div>
1819
</header>
@@ -119,7 +120,7 @@ <h2>Settings</h2>
119120
</div>
120121

121122
<footer class="settings-footer">
122-
<small>Saved to device • Responsive • Themes • Notifications</small>
123+
<small>Saved to device • Themes • Notifications</small>
123124
</footer>
124125
</div>
125126
</aside>

styles.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,10 @@ body::after {
7575
padding: 8px;
7676
border-radius: 10px;
7777
transition: background 0.15s ease;
78+
text-decoration: none;
79+
display: inline-flex;
80+
align-items: center;
81+
justify-content: center;
7882
}
7983
.icon-btn:hover { background: var(--icon-hover-bg); }
8084
.icon-btn:focus { outline: 2px solid var(--accent); }

0 commit comments

Comments
 (0)