This repository has been archived by the owner on Dec 3, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
128 lines (121 loc) · 5.21 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
<!DOCTYPE html>
<html lang="pl">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0,maximum-scale=1, user-scalable=no">
<title>Strona główna - układy klawiatury</title>
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/buttons.css">
<link rel="stylesheet" href="style.css">
<link rel="icon" type="image/png" sizes="32x32" href="img/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="img/favicon-16x16.png">
</head>
<body>
<header>
<a id="home-page" href=".">
<div id="logo"></div>
<span>Strona główna</span>
</a>
<nav>
<input type="checkbox" name="nav-button" id="nav-button">
<div id="hamburger"></div>
<ul id="nav">
<li class="subtitle-2"><a href="">Strona główna</a></li>
<li class="subtitle-2"><a href="gallery/index.html">Wszystkie</a></li>
<li class="subtitle-2"><a href="colemak/index.html">COLEMAK</a></li>
<li class="subtitle-2"><a href="dvorak/index.html">DVORAK</a></li>
<li class="subtitle-2"><a href="qwerty/index.html">QWERTY</a></li>
<li class="subtitle-2"><a href="propose/index.html">Zaproponuj układ</a></li>
</ul>
<div id="scrim"></div>
</nav>
<div id="right"></div>
</header>
<div id="container">
<div id="start"></div>
<main>
<img src="img/background-big.gif" class="blur" id="blur-big">
<img src="img/background-small.gif" class="blur" id="blur-small">
<div id="texts">
<h1>Nie tylko QWERTY!</h1>
<h2>Poznaj inne układy</h2>
<div class="buttons">
<a href="#colemak">
<button type="submit" class="button-filled">
<span class="button-text">colemak</span>
<div class="button-hover"></div>
</button>
</a>
<a href="#dvorak">
<button id="dvorak-button" type="submit" class="button-filled">
<span class="button-text">dvorak</span>
<div class="button-hover"></div>
</button>
</a>
<a href="#qwerty">
<button type="submit" class="button-filled">
<span class="button-text">qwerty</span>
<div class="button-hover"></div>
</button>
</a>
</div>
</div>
</main>
<a href="#start">
<div id="fab">
<span class="material-icons-round">
arrow_upward
</span>
</div>
</a>
<div class="layout-text" id="colemak">
<h4>Colemak</h4>
<h5><strong>2,2 razy mniej</strong> ruchów palcami</h5>
<h5><strong>35 razy więcej</strong> słów które tylko jednym rzędem</h5>
<p class="body-1">Colemak to nowowczesna i komfortowa alternatywa dla QWERTY.<br>Zmienia wiele
klawiszy
jednocześnie pozostawiając skróty klawiszowe.</p>
<a href="colemak/index.html">
<button type="submit" class="button-texted">
<span class="button-text">więcej</span>
<div class="button-hover"></div>
</button>
</a>
</div>
<div class="layout-text" id="dvorak">
<h4>Dvorak</h4>
<h5>Maksymalna szybkość i efektywność</h5>
<p class="body-1">Pomimo bycia szybszym niż QWERTY, nie został standardem.<br>Trudnością mogą być skróty
klawiszowe.</p>
<a href="dvorak/index.html">
<button type="submit" class="button-texted">
<span class="button-text">więcej</span>
<div class="button-hover"></div>
</button>
</a>
</div>
<div class="layout-text" id="qwerty">
<h4>QWERTY</h4>
<h5><strong>Najpopularniejszy</strong> układ na świecie</h5>
<p class="body-1">Układ ten jest najbardziej kompatybilny z różnymi programami i grami.<br>Nie jest on
jednak
najszybszy i najbardziej komfortowy.</p>
<a href="qwerty/index.html">
<button type="submit" class="button-texted">
<span class="button-text">więcej</span>
<div class="button-hover"></div>
</button>
</a>
</div>
</div>
<footer>
<span>© 2021 Kamil Kras</span>
<a href="https://github.com/xVemu" target="blank">
<div id="github"></div>
</a>
<a href="mailto:k.kras.tig19@zsme.tarnow.pl">Kontakt</a>
<a href="https://github.com/xVemu/jitp-project/blob/master/LICENSE" target="blank">Licencja</a>
</footer>
</body>
</html>