-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
371 lines (304 loc) · 8.07 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
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Oloid pour Tomuss</title>
<meta name="viewport" content="width=device-width">
<link href="https://fonts.googleapis.com/css?family=Montserrat:300,400,500,700&display=swap" rel="stylesheet">
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-102659274-4"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
</script>
<style>
body{
margin: 0px;
font-family: Montserrat;
overflow-x: hidden;
cursor: default;
}
a{
text-decoration: none;
color: inherit;
}
img{
width: 100%;
}
b{
color: #424242;
}
header{
background-color: #FFFFFF;
position: fixed;
cursor: default;
width: 100%;
top: 0px;
left: 0px;
right: 0px;
height: 70px;
display: flex;
justify-content: space-between;
vertical-align: middle;
align-items: center;
box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.1);
font-size: 13px;
}
header #logo{
width: 30px;
height: 30px;
margin: 0px 25px;
}
header #logo-text{
font-size: 15px;
font-weight: bold;
color: #FF7043;
vertical-align: center;
}
header #app-intro{
display: flex;
align-items: center;
}
#page-1{
margin-top: 40px;
}
h1{
color: #FF7043;
font-size: 50px;
font-weight: 500;
text-align: center;
}
h2{
color: #424242;
}
p{
margin: 10px;
line-height: 1.8;
}
.page{
display: flex;
justify-content: space-around;
}
.page div{
width: 50vw;
text-align: center;
}
.page img{
width: 400px;
display: block;
margin: 0px auto;
}
.page-text div{
margin-top: 20vh;
}
.img-flex{
display: flex;
}
.button{
color: white;
font-size: 15px;
padding: 12px 25px;
border-radius: 35px;
width: 200px;
text-align: center;
font-weight: 500;
display: block;
margin: 80px auto;
margin-bottom: 20px;
transition: all 250ms;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
background: rgb(255,171,145);
background: linear-gradient(-145deg, rgba(255,171,145,1) 0%, rgba(255,87,34,1) 100%);
}
.button:hover{
transition: all 250ms;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}
.classic-link{
font-size: 14px;
color: #01579B;
text-decoration: underline dotted;
}
.header-button{
margin: 0px;
padding: 10px 15px;
width: 180px;
margin-right: 20px;
box-shadow: 0px 0px 5px rgba(0, 0, 0, 0);
}
#how-to{
padding: 20px;
border-radius: 6px;
font-size: 17px;
color: #424242;
width: calc(90vw - 40px);
margin: 90px auto;
border: 2px solid rgb(255,171,145);
}
#how-to p{
margin-top: 20px;
margin-left: 0px;
}
footer{
padding: 20px;
border-radius: 6px;
font-size: 17px;
color: #424242;
width: calc(90vw - 40px);
margin: 40px auto;
}
footer h3{
margin-top: 40px;
}
footer p{
margin: 0px;
}
.social-footer{
margin: 30px auto;
display: flex;
justify-content: center;
}
.social-link img{
width: 70px;
height: 70px;
}
.social-footer a{
margin: 0px 20px;
}
@media all and (max-width: 1000px){
header .header-button{
display: none;
}
header #app-intro{
justify-content: center;
width: 100%;
margin-left: -10px;
}
header {
height: 65px;
}
.page-text div{
margin-bottom: 20vh;
margin-top: 0px;
}
.page:nth-child(even){
flex-direction: column;
align-items: center;
width: 100%;
}
.page:nth-child(odd){
flex-direction: column-reverse;
align-items: center;
width: 100%;
}
.page .img-flex, .page .page-text, .page div{
width: 100%;
text-align: center;
}
#download{
position: fixed;
bottom: 30px;
left: 0px;
right: 0px;
margin: 0px auto;
}
.social-footer{
margin-bottom: 90px;
}
}
</style>
</head>
<body>
<header>
<div id="app-intro">
<img src="img/logo-2.png" id="logo">
<span id="logo-text">Oloid pour Tomuss</span>
</div>
<a href="https://play.google.com/store/apps/details?id=com.e.oloid2" target="_blank" class="button header-button">Télécharger</a>
</header>
<div class="page" id="page-1">
<div class="page-text">
<div>
<h1>Oloid</h1>
<p>Indispensable quand on est à <b>Lyon 1</b> ! Retrouve tes notes, tes mails, ton emploi du temps, tes examens, une carte des bâtiments et bien plus encore !</p>
<a href="https://play.google.com/store/apps/details?id=com.e.oloid2" target="_blank" class="button" id="download">Télécharger (Play Store)</a>
<a href="https://github.com/cl6ment/oloid-for-tomuss/releases" class="classic-link">Voir les anciennes versions</a>
</div>
</div>
<div class="img-flex">
<img src="img/screen-4.png">
<img src="img/screen-3.png">
</div>
</div>
<div class="page" id="page-2">
<div class="img-flex">
<img src="img/screen-10.png">
<img src="img/screen-3.png">
</div>
<div class="page-text">
<div>
<h2>Notes</h2>
<p>Tu veux vite savoir tes notes ? Le site de la fac n'est pas adapté à ton mobile ? <br> C'est pour ça qu'Oloid existe !</p>
</div>
</div>
</div>
<div class="page" id="page-2">
<div class="page-text">
<div>
<h2>Emploi du temps</h2>
<p>Ton emploi du temps, toujours à jour, jamais en rade !<br> Tu ne sais pas où est ton amphi ? L'app te le dira !</p>
</div>
</div>
<div class="img-flex">
<img src="img/new/screen-1.png">
<img src="img/new/screen-6.png">
</div>
</div>
<div class="page" id="page-3">
<div class="img-flex">
<img src="img/screen-2.png">
<img src="img/screen-9.png">
</div>
<div class="page-text">
<div>
<h2>Examens</h2>
<p>Un examen dans 10 minutes et tu ne connais pas ta place ? <br>Tu ne sais pas où est l'amphi ?<br> Pas de panique ! On a pensé à tout.</p>
</div>
</div>
</div>
<div class="page" id="page-4">
<div class="page-text">
<div>
<h2>Mails</h2>
<p>Les profs envoient régulièrement des mails pour signaler des changements et des examens. Avec Oloid, tu peux les lires directement depuis ton mobile !</p>
</div>
</div>
<div class="img-flex">
<img src="img/screen-11.png">
<img src="img/screen-12.png">
</div>
</div>
<footer>
<h3>A propos</h3>
<p>
Oloid est une application pour les étudiants, par les étudiants. Nous avons eu les mêmes soucis que vous : emploi du temps pas disponible entre minuit et 4h, boite mail pas adaptée aux mobiles, des infos à aller chercher à plein d'endroits différents...
</p>
<h3>Vie privée</h3>
<p>
Oloid n'est pas encore open-source, mais le deviendra très bientôt. Sache déjà que l'application à été développée avec une emphase particulière sur la vie privée : pas de pistage ! Les seules données que nous récoltons sont liées aux plantages de l'application. Tes données ne quittent jamais l'application, tu en es propriétaire ! En outre, le trafic de l'appli vers les serveurs de la fac est chiffré, personne ne peut donc le lire.
</p>
<h3>Une remarque ? Des questions ?</h3>
<p>
Viens papoter avec nous sur Discord & Github !
</p>
</footer>
<div class="social-footer">
<a href="https://discord.gg/zDhNMr4" class="social-link discord"><img src="img/discord-logo.png"></a>
<a href="https://github.com/cl6ment/oloid-for-tomuss" class="social-link github"><img src="img/github-logo.png"></a>
</div>
</body>
</html>