Files
OpenTimeTracker/templates/layout.html
2026-02-10 20:27:57 +01:00

329 lines
12 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>OpenTimeTracker</title>
<!-- Favicon: Simple Clock SVG -->
<link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 24 24%22 fill=%22none%22 stroke=%22%232383e2%22 stroke-width=%222%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22><circle cx=%2212%22 cy=%2212%22 r=%2210%22/><polyline points=%2212 6 12 12 16 14%22/></svg>">
<style>
:root {
--font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
--bg-body: #ffffff;
--bg-input: #f7f7f5;
--text-primary: #37352f;
--text-secondary: #787774;
--border-dim: #ededed;
--border-focus: #aebfd1;
--primary-color: #2383e2;
--danger-color: #eb5757;
}
body {
font-family: var(--font-family);
background: var(--bg-body);
color: var(--text-primary);
margin: 0;
padding: 0;
line-height: 1.6;
}
/* Modern Navigation */
nav {
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
padding: 0.8rem 1.5rem;
border-bottom: 1px solid var(--border-dim);
display: flex;
justify-content: space-between;
align-items: center;
position: sticky;
top: 0;
z-index: 1000;
}
.brand {
font-weight: 600;
font-size: 1.1rem;
color: var(--text-primary);
letter-spacing: -0.02em;
display: flex; align-items: center; gap: 8px;
}
nav a {
color: var(--text-secondary);
text-decoration: none;
margin-left: 20px;
font-size: 0.9rem;
font-weight: 500;
transition: color 0.15s;
}
nav a:hover { color: var(--text-primary); }
.container { max-width: 1100px; margin: 3rem auto; padding: 0 1.5rem; }
/* Clean Notion-style Cards */
.card {
background: white;
padding: 2rem;
border: 1px solid var(--border-dim);
border-radius: 4px;
margin-bottom: 1.5rem;
}
h2, h3, h4 { margin-top: 0; font-weight: 600; letter-spacing: -0.03em; margin-bottom: 1rem; }
h2 { font-size: 1.8rem; }
/* Beautiful Input Fields */
label {
display: block;
font-size: 0.75rem;
font-weight: 600;
color: var(--text-secondary);
margin-bottom: 0.5rem;
margin-top: 1.2rem;
text-transform: uppercase;
letter-spacing: 0.05em;
}
label:first-child { margin-top: 0; }
input[type="text"],
input[type="password"],
input[type="datetime-local"],
select,
textarea {
width: 100%;
padding: 10px 12px;
margin-bottom: 10px;
box-sizing: border-box;
border: 1px solid transparent;
border-radius: 4px;
background: var(--bg-input);
font-size: 0.95rem;
color: var(--text-primary);
font-family: inherit;
transition: all 0.2s;
}
input:focus, select:focus, textarea:focus {
outline: none;
background: white;
border-color: var(--border-focus);
box-shadow: 0 0 0 3px rgba(35, 131, 226, 0.1);
}
/* Custom Select Style */
select {
appearance: none;
-webkit-appearance: none;
background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%2337352f%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
background-repeat: no-repeat;
background-position: right 12px center;
background-size: 10px;
padding-right: 30px;
}
/* Notion-like Number Stepper */
.stepper-input {
display: flex;
align-items: center;
background: var(--bg-input);
border-radius: 4px;
padding: 2px;
margin-bottom: 10px;
}
.stepper-input:focus-within {
background: white;
box-shadow: 0 0 0 3px rgba(35, 131, 226, 0.1);
}
.stepper-input button {
background: transparent;
border: none;
color: var(--text-secondary);
font-size: 1.2rem;
width: 36px;
height: 36px;
cursor: pointer;
display: flex; align-items: center; justify-content: center;
border-radius: 4px;
}
.stepper-input button:hover {
color: var(--text-primary);
background: rgba(0,0,0,0.05);
}
.stepper-input input {
flex: 1;
text-align: center;
margin: 0;
border: none;
background: transparent;
font-weight: 500;
}
.stepper-input input:focus {
box-shadow: none;
background: transparent;
}
/* Modern Checklist Styles */
.checklist-container {
list-style: none;
padding: 0;
margin: 1rem 0;
}
.checklist-item {
display: flex;
align-items: flex-start;
padding: 8px 0;
border-bottom: 1px solid var(--border-dim);
transition: opacity 0.2s;
}
.checklist-item:last-child { border-bottom: none; }
.checklist-item input[type="checkbox"] {
width: 18px;
height: 18px;
margin-right: 12px;
margin-top: 4px;
margin-bottom: 0;
accent-color: var(--primary-color);
cursor: pointer;
}
.checklist-item label {
margin: 0;
font-size: 0.95rem;
cursor: pointer;
line-height: 1.5;
text-transform: none;
color: var(--text-primary);
flex-grow: 1;
}
.checklist-item.completed label {
text-decoration: line-through;
color: var(--text-secondary);
}
.checklist-item.completed {
opacity: 0.7;
}
/* Minimalist Buttons */
.btn {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 8px 16px;
border: 1px solid transparent;
border-radius: 4px;
cursor: pointer;
font-size: 0.9rem;
font-weight: 500;
color: white;
background: var(--text-primary); /* Modern black buttons */
transition: opacity 0.2s, transform 0.1s;
text-decoration: none;
}
.btn:hover { opacity: 0.9; }
.btn:active { transform: scale(0.98); }
.btn-danger { background: transparent; border: 1px solid var(--border-dim); color: var(--danger-color); }
.btn-danger:hover { background: #fff5f5; border-color: #ffb3b3; }
/* Grid for Activities */
.activity-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 1rem; }
.activity-card {
height: 100px; display: flex; align-items: center; justify-content: center;
border-radius: 6px; color: white; font-weight: 600; cursor: pointer; text-align: center;
flex-direction: column; transition: transform 0.1s;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.activity-card:hover { transform: translateY(-2px); box-shadow: 0 4px 8px rgba(0,0,0,0.15); }
/* Specific Overrides */
.timer-display { font-size: 3.5rem; font-weight: 700; text-align: center; margin: 1.5rem 0; font-variant-numeric: tabular-nums; }
.active-section { border: 1px solid var(--primary-color); background: white; box-shadow: 0 4px 12px rgba(35, 131, 226, 0.1); }
small { color: var(--text-secondary); }
/* Modern Modal System */
.modal-backdrop {
display: none;
position: fixed;
top: 0; left: 0; width: 100%; height: 100%;
background: rgba(0, 0, 0, 0.4);
backdrop-filter: blur(3px);
z-index: 2000;
align-items: center;
justify-content: center;
opacity: 0;
transition: opacity 0.2s ease-in-out;
}
.modal-backdrop.show {
display: flex;
opacity: 1;
}
.modal-card {
background: white;
width: 100%; max-width: 480px;
padding: 2.5rem;
border-radius: 12px;
box-shadow: 0 20px 40px rgba(0,0,0,0.2);
transform: scale(0.95);
transition: transform 0.2s ease-out;
max-height: 90vh;
overflow-y: auto;
}
.modal-backdrop.show .modal-card {
transform: scale(1);
}
/* Improved Date/Time Picker styling */
input[type="datetime-local"], input[type="date"], input[type="time"] {
appearance: none;
-webkit-appearance: none;
font-family: inherit;
color: var(--text-primary);
background: var(--bg-input);
cursor: pointer;
}
/* Customizing the icon */
::-webkit-calendar-picker-indicator {
filter: invert(0.4); /* Make icon grey */
cursor: pointer;
transition: opacity 0.2s;
}
::-webkit-calendar-picker-indicator:hover {
opacity: 1;
}
</style>
</head>
<body>
<nav>
<a href="{{ url_for('index') }}" class="brand" style="text-decoration: none;">
<!-- Simple SVG Icon -->
<svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"/><polyline points="12 6 12 12 16 14"/></svg>
OpenTimeTracker
</a>
<div>
{% if session.user_id %}
<a href="{{ url_for('index') }}">Tracker</a>
<a href="{{ url_for('tasks') }}">Tasks</a>
<a href="{{ url_for('goals') }}">Goals</a>
<a href="{{ url_for('logbook') }}">Logbook</a>
<a href="{{ url_for('logout') }}">Logout</a>
{% else %}
<a href="{{ url_for('login') }}">Login</a>
<a href="{{ url_for('register') }}">Register</a>
{% endif %}
</div>
</nav>
<div class="container">
{% with messages = get_flashed_messages() %}
{% if messages %}
{% for message in messages %}
<div style="background: white; border: 1px solid var(--border-dim); color: var(--text-primary); padding: 12px; border-radius: 4px; margin-bottom: 20px; font-size: 0.9rem;">{{ message }}</div>
{% endfor %}
{% endif %}
{% endwith %}
{% block content %}{% endblock %}
</div>
</body>
</html>