-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
163 lines (150 loc) · 5.14 KB
/
Copy pathindex.html
File metadata and controls
163 lines (150 loc) · 5.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>remoteStorage Apps</title>
<style>
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: -apple-system, BlinkMacSystemFont, system-ui, sans-serif; background: #f8f9fa; color: #333; min-height: 100vh; }
.hero {
background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
color: white;
padding: 4rem 2rem 3rem;
text-align: center;
}
.hero h1 { font-size: 2.2rem; font-weight: 700; margin-bottom: 0.5rem; letter-spacing: -0.02em; }
.hero p { font-size: 1.1rem; opacity: 0.8; max-width: 500px; margin: 0 auto; line-height: 1.5; }
.hero .badge {
display: inline-block;
margin-top: 1.5rem;
padding: 0.3rem 0.8rem;
background: rgba(255,255,255,0.12);
border: 1px solid rgba(255,255,255,0.2);
border-radius: 20px;
font-size: 0.8rem;
opacity: 0.7;
}
.apps {
max-width: 720px;
margin: -2rem auto 0;
padding: 0 1.5rem 3rem;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 1.5rem;
}
.card {
background: white;
border-radius: 12px;
box-shadow: 0 4px 16px rgba(0,0,0,0.08);
overflow: hidden;
transition: transform 0.15s ease, box-shadow 0.15s ease;
text-decoration: none;
color: inherit;
display: flex;
flex-direction: column;
}
.card:hover {
transform: translateY(-3px);
box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.card-icon {
padding: 2rem 1.5rem 1rem;
text-align: center;
font-size: 3rem;
}
.card-notes .card-icon { background: linear-gradient(135deg, #fff3e0, #ffe0b2); }
.card-editor .card-icon { background: linear-gradient(135deg, #e3f2fd, #bbdefb); }
.card-bookmarks .card-icon { background: linear-gradient(135deg, #e8f5e9, #c8e6c9); }
.card-grouptabs .card-icon { background: linear-gradient(135deg, #fce4ec, #f8bbd0); }
.card-body { padding: 1.25rem 1.5rem 1.5rem; flex: 1; }
.card-body h2 { font-size: 1.25rem; margin-bottom: 0.4rem; }
.card-body p { font-size: 0.9rem; color: #666; line-height: 1.5; }
.card-footer {
padding: 0 1.5rem 1.25rem;
display: flex;
gap: 0.5rem;
}
.tag {
font-size: 0.7rem;
padding: 0.2rem 0.5rem;
background: #f0f0f0;
border-radius: 4px;
color: #888;
text-transform: uppercase;
letter-spacing: 0.03em;
}
footer {
text-align: center;
padding: 2rem;
font-size: 0.85rem;
color: #999;
}
footer a { color: #4a9eff; text-decoration: none; }
footer a:hover { text-decoration: underline; }
@media (max-width: 600px) {
.hero { padding: 3rem 1.5rem 2.5rem; }
.hero h1 { font-size: 1.6rem; }
.apps { margin-top: -1.5rem; }
}
</style>
</head>
<body>
<div class="hero">
<h1>remoteStorage Apps</h1>
<p>Simple apps that sync to your personal storage. No accounts, no cloud lock-in. Your data stays yours.</p>
<span class="badge">Works with any remoteStorage server</span>
</div>
<div class="apps">
<a href="notes/" class="card card-notes">
<div class="card-icon">📝</div>
<div class="card-body">
<h2>Notes</h2>
<p>Quick note-taking. Add, view, and delete plain-text notes synced to your storage in real time.</p>
</div>
<div class="card-footer">
<span class="tag">Single file</span>
<span class="tag">No build step</span>
</div>
</a>
<a href="bookmarks/" class="card card-bookmarks">
<div class="card-icon">🔖</div>
<div class="card-body">
<h2>Bookmarks</h2>
<p>Save, tag, search, and organize your bookmarks. Compatible with the webmarks data format.</p>
</div>
<div class="card-footer">
<span class="tag">Single file</span>
<span class="tag">Tags + Search</span>
</div>
</a>
<a href="grouptabs/" class="card card-grouptabs">
<div class="card-icon">💰</div>
<div class="card-body">
<h2>GroupTabs</h2>
<p>Split expenses in a group. Track who paid, calculate balances, and see who owes whom.</p>
</div>
<div class="card-footer">
<span class="tag">Single file</span>
<span class="tag">Expense splitting</span>
</div>
</a>
<a href="editor/" class="card card-editor">
<div class="card-icon">✎</div>
<div class="card-body">
<h2>Editor</h2>
<p>Minimal text editor with sidebar navigation, auto-save, and a distraction-free writing experience.</p>
</div>
<div class="card-footer">
<span class="tag">Single file</span>
<span class="tag">Auto-save</span>
</div>
</a>
</div>
<footer>
Built for <a href="https://remotestorage.io">remoteStorage</a> ·
<a href="https://github.com/JavaScriptSolidServer/remotestorage">Source</a> ·
Powered by <a href="https://github.com/JavaScriptSolidServer/JavaScriptSolidServer">JSS</a>
</footer>
</body>
</html>