-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
90 lines (90 loc) · 2.43 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
<!DOCTYPE html>
<html>
<head>
<title>Kodi Repository</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap">
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<style>
body {
margin: 0;
padding: 0;
background-color: #eceff1;
font-family: 'Roboto', sans-serif;
font-size: 16px;
line-height: 1.5;
color: #333;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
}
h1 {
margin: 0 0 16px;
font-size: 48px;
font-weight: 500;
color: #37474f;
}
p {
margin: 0 0 16px;
font-size: 24px;
font-weight: 300;
color: #546e7a;
}
.download-button {
margin-top: 32px;
display: flex;
align-items: center;
justify-content: center;
}
.download-button a {
display: inline-flex;
align-items: center;
justify-content: center;
text-decoration: none;
color: #fff;
background-color: #2196f3;
padding: 16px 32px;
border-radius: 24px;
font-size: 24px;
font-weight: 500;
transition: background-color 0.2s ease-in-out;
box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
-webkit-tap-highlight-color: transparent;
}
.download-button a:hover {
background-color: #0d8bf2;
}
.instructions {
margin-top: 32px;
font-size: 24px;
font-weight: 300;
color: #546e7a;
text-align: center;
}
</style>
</head>
<body>
<h1>Vítej tohle je můj KODI repozitář!</h1>
<p>Aktuální verze: 1.3 - Omega</p>
<div class="download-button mdc-ripple-upgraded">
<a href="https://lksmasin.github.io/kodirepo/repo/zips/repository.lukymas/repository.lukymas-1.3" target="_blank" rel="noopener">
Stáhnout
<span class="material-icons">file_download</span>
</a>
</div>
<p class="instructions">Instalace repozitáře:<br>
1. Přejdi do nastavení, správce souborů.<br>
2. Přidej https://lksmasin.github.io/kodirepo/repo/zips/repository.lukymas/ jako zdroj.<br>
2. Jdi zpět do nastavení.<br>
3. Vyber doplňky.<br>
4. Vyber instalovat ze souboru zip.<br>
5. Najdi vytvořený zdroj a vyber soubor repository.lukymas-x.zip.<br>
6. Počkej než se dokončí instalace.<br>
<br>
Nebo můžeš stáhnout a nainstalovat .zip soubor pomocí tlačítka výše.</p>
<br>
Zdrojový kód najdeš zde: https://github.com/lksmasin/kodirepo/
</body>
</html>