66 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			66 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!DOCTYPE html>
 | |
| <html lang="en">
 | |
| <head>
 | |
|     <meta charset="UTF-8">
 | |
|     <meta http-equiv="X-UA-Compatible" content="IE=edge">
 | |
|     <meta name="viewport" content="width=device-width, initial-scale=1.0">
 | |
| 
 | |
|     <title>Mainspring - Grayson Riffe</title>
 | |
|     <meta name="author" content="Grayson Riffe">
 | |
|     <meta name="description" content="A simple timekeeper">
 | |
|     <meta name="theme-color" content="#00a516">
 | |
|     <meta name="og:image" content="/mainspring/mslogo.png">
 | |
| 
 | |
|     <link rel="icon" href="/favicon.png" type="image/png">
 | |
|     <link rel="stylesheet" href="/style.css">
 | |
| 
 | |
|     <script src="/transitions.js" defer></script>
 | |
| </head>
 | |
| <body style="--headercolor: var(--msheadercolor); --maincolor: #00a516aa; --articlecolor: #21a733de;">
 | |
|     <div class="background" style="--background: url('/mainspring/msbackground.jpg');"></div>
 | |
| 
 | |
|     <header>
 | |
|         <div class="logo">
 | |
|             <img src="/logo.png" alt="Grayson Riffe">
 | |
|         </div>
 | |
|         <nav>
 | |
|             <div><a href="/">Home</a></div>
 | |
|             <div class="dropdown-container"><a href="#">Portfolio</a>
 | |
|                 <div class="dropdown">
 | |
|                     <div><a href="/nf/">Nothin' Fancy</a></div>
 | |
|                     <div><a href="/winchat/">WinChat</a></div>
 | |
|                     <div class="selectedpage"><a href="#">Mainspring</a></div>
 | |
|                 </div>
 | |
|             </div>
 | |
|             <div><a href="/resume/" class="notransition">Resume</a></div>
 | |
|             <div><a href="/about/">About</a></div>
 | |
|         </nav>
 | |
|     </header>
 | |
| 
 | |
|     <main>
 | |
|         <div class="centeredimage">
 | |
|             <img src="mslogo.png" alt="Mainspring Logo">
 | |
|         </div>
 | |
|         <article>
 | |
|             <h1>Mainspring</h1>
 | |
|             <p>
 | |
|                 Mainspring is a simple timekeeper.
 | |
| 
 | |
|             </p>
 | |
|             <div class="mainimage">
 | |
|                 <img src="screenshot.png" alt="Mainspring screenshot">
 | |
|             </div>
 | |
|             <p>
 | |
|                 This was created to keep track of the time spent on other projects easily. It can be used as a simple stopwatch, but if the time is saved to a file, it can be loaded and subsequent sessions will add to that time. Mainspring will also autosave your times.
 | |
| 
 | |
|                 You can download the current version (1.0.0) <a href="Mainspring.zip" class="notransition">here</a>.
 | |
| 
 | |
|                 The source can be found <a href="https://git.graysonriffe.com/grayson/Mainspring" class="notransition">here</a>.
 | |
|             </p>
 | |
|         </article>
 | |
|         <footer>
 | |
|             Copyright 2025 Grayson Riffe
 | |
|         </footer>
 | |
|     </main>
 | |
| </body>
 | |
| </html> |