-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathindex.html
284 lines (240 loc) · 8.57 KB
/
index.html
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
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
<!DOCTYPE html>
<html>
<head>
<title>RemoteFiles - An open source SFTP client</title>
<link rel="stylesheet" type="text/css"
href="https://cdn.materialdesignicons.com/4.4.95/css/materialdesignicons.min.css">
<link href="https://fonts.googleapis.com/css?family=Roboto|Roboto+Mono&display=swap" rel="stylesheet">
<style>
body {
background-color: rgb(15, 16, 18);
color: #ccc;
font-family: "Roboto", sans-serif;
font-size: 1.1rem;
margin: 0;
}
a {
color: #5999f8;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
header {
background-color: rgba(60, 120, 255, .18);
padding: 3.6rem 0;
text-align: center;
}
header img {
width: 100px;
}
header h1 {
color: #ddd;
font-family: "Roboto Mono", monospace;
font-size: 2.6em;
font-weight: 600;
margin: .3em 0 .6em 0;
}
header h3 {
font-size: 1.2em;
font-weight: 400;
margin: .8em 0;
opacity: .8;
}
#button-container {
margin-top: 3rem;
}
#button {
background-color: rgba(255, 255, 255, .16);
border-radius: .34em;
color: #ffffff;
display: inline-block;
margin: .75rem;
padding: .75rem 1rem;
text-decoration: none;
transition: .2s;
}
#button:hover {
background-color: rgba(255, 255, 255, .24);
box-shadow: 0 .12rem .2rem rgba(0, 0, 0, .3);
}
#button #icon {
margin-right: .8rem;
}
#button #icon::before {
transform: scale(1.3);
}
main {
margin: 0 auto;
max-width: 60rem;
padding: 2rem 6rem;
}
main h2 {
font-family: "Roboto Mono", monospace;
font-size: 1.9rem;
font-weight: 500;
}
#divider {
height: 2px;
margin-top: 2rem;
margin-bottom: 1rem;
background-color: rgba(255, 255, 255, .2);
}
#screenshot-container {
overflow-x: scroll;
overflow-y: hidden;
white-space: nowrap;
}
#screenshot-container div {
display: inline-block;
}
#screenshot-container img {
max-width: 100%;
width: 280px;
}
#screenshot-container::-webkit-scrollbar {
height: 8px;
}
#screenshot-container::-webkit-scrollbar-track {
background: #444;
}
#screenshot-container::-webkit-scrollbar-thumb {
background: #777;
}
#screenshot-container::-webkit-scrollbar-thumb:hover {
background: #999;
}
#screenshot-container::-webkit-scrollbar-thumb:active {
background: #bbb;
}
@media screen and (max-width: 54em) {
main {
padding: 2rem;
padding-top: .8rem;
}
}
@media screen and (max-width: 42em) {
header {
padding: 2rem 0;
}
}
@media only screen and (max-device-width: 768px) {
#button {
font-size: 1.3em;
}
}
@media only screen and (max-device-width: 600px) {
body,
header h3 {
font-size: 1.2em;
}
header {
padding-bottom: 0;
}
header img {
width: 200px;
}
header h1 {
font-size: 3.6em;
}
#button {
background-color: rgba(255, 255, 255, .1);
border-bottom: 2px solid rgba(255, 255, 255, .1);
border-radius: 0;
font-size: 2.1em;
margin: 0;
padding: 1em;
text-align: start;
width: calc(100% - 2em);
}
#button #icon {
margin-right: .8em;
}
main {
padding: 3rem;
padding-top: 1rem;
}
main h2 {
font-size: 3.3rem;
}
#divider {
height: 3px;
margin-top: 4rem;
}
#screenshot-container img {
width: 600px;
}
#screenshot-container::-webkit-scrollbar {
height: 16px;
}
}
</style>
</head>
<body>
<header>
<img src="https://github.com/niklas-8/RemoteFiles/blob/master/assets/app_icon_bg.png?raw=true" />
<h1>RemoteFiles</h1>
<h3>An open source SFTP client for Android and iOS</h3>
<h3>Version 0.1.0 [Beta]</h3>
<div id="button-container">
<a id="button" href="https://github.com/niklas-8/RemoteFiles"><span id="icon"
class="mdi mdi-github-circle"></span><span id="text">View on GitHub</span></a>
<a id="button" href="https://play.google.com/store/apps/details?id=com.niklas8.remotefiles"><span id="icon"
class="mdi mdi-google-play"></span><span id="text">Google PlayStore</span></a>
<a id="button"
href="https://github.com/niklas-8/RemoteFiles/releases/download/v0.1.0-beta/remotefiles-v0.1.0-beta.apk"><span
id="icon" class="mdi mdi-download"></span><span id="text">Download APK file</span></a>
</div>
</header>
<main>
<h2>About</h2>
<p>RemoteFiles is a SFTP client that was developed with <a href="https://flutter.dev">Flutter</a> in the <a
href="https://dart.dev">Dart</a> Programming language and the UI is based on
Material Design.</p>
<p>The app is open source, completely free, has no ads and lots of features.</p>
<p>File Management Features:</p>
<ul>
<li>Down- and upload files</li>
<li>Delete files/folders</li>
<li>Rename files/folders</li>
<li>Copy and move files and folders to other locations on the server</li>
<li>Share files</li>
<li>Open files without permanently saving them on your device</li>
<li>Create folders</li>
<li>Search for files in the current directory</li>
<li>Get informations like size, permissions and modification date</li>
</ul>
<p>Connection Features:</p>
<ul>
<li>Securely save your connections</li>
<li>Connect to a server quickly with the Quick Connect feature</li>
<li>Give your connections a name so you can better organise them</li>
<li>Use the favorites page to see your favorite connections or see your history of added connections on the
recently added page</li>
<li>Edit and delete existing connections</li>
</ul>
<p>Customisation:</p>
<ul>
<li>Choose between light, dark and black theme</li>
<li>Use list, detailed or grid view to view your files</li>
<li>Set how your files will be sorted</li>
<li>Choose whether to show dotfiles</li>
<li>Set location for downloaded files</li>
<li>Set shell commands for copying/moving files and folders</li>
</ul>
<div id="divider"></div>
<h2>Contributing</h2>
<p>Please feel free to contribute by opening an issue, sending a feature request or a bug report on GitHub.</p>
<div id="divider"></div>
<h2>Screenshots</h2>
<div id="screenshot-container">
<div><img src="https://github.com/niklas-8/RemoteFiles/blob/master/screenshots/1.jpg?raw=true" /></div>
<div><img src="https://github.com/niklas-8/RemoteFiles/blob/master/screenshots/2.jpg?raw=true" /></div>
<div><img src="https://github.com/niklas-8/RemoteFiles/blob/master/screenshots/3.jpg?raw=true" /></div>
<div><img src="https://github.com/niklas-8/RemoteFiles/blob/master/screenshots/4.jpg?raw=true" /></div>
<div><img src="https://github.com/niklas-8/RemoteFiles/blob/master/screenshots/5.jpg?raw=true" /></div>
<div><img src="https://github.com/niklas-8/RemoteFiles/blob/master/screenshots/6.jpg?raw=true" /></div>
</div>
</main>
</body>
</html>