-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
74 lines (70 loc) · 3.26 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Home</title>
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/lt-style.css">
</head>
<body class="lt-grid-container">
<header class="lt-col-1-6-desktop lt-row-1-1-desktop
lt-col-1-3-tablet lt-row-1-1-tablet
lt-col-1-1-mobile lt-row-1-1-mobile
lt-box-shadow">
<!-- navigation -->
<nav class="lt-nav">
<ul class="lt-nav-ul">
<li class="lt-nav-li"><a href="index.html" class="lt-nav-a lt-link-transition lt-nav-active-a">Home</a></li>
<li class="lt-nav-li"><a href="documentation_intro.html" class="lt-nav-a lt-link-transition">Documentation</a></li>
<li class="lt-nav-li"><a href="examples.html" class="lt-nav-a lt-link-transition">Examples</a></li>
</ul>
</nav>
</header>
<main class="lt-col-1-6-desktop lt-row-2-5-desktop
lt-col-1-3-tablet lt-row-2-4-tablet
lt-col-1-1-mobile lt-row-2-3-mobile">
<!-- hero images for different sizes-->
<div>
<section class="lt-background-cover lt-height-large lt-visible-large" style="background-image: url(img/dragon_fly_1920.jpg);">
<div class="lt-padding-top-xlarge">
<div class="lt-margin-bottom-small lt-margin-left-medium lt-hero-header">
<h1>LightKit</h1>
<p>A front-end framework for developing websites fast.</p>
<a href="documentation_intro.html" class="lt-button-default-1 lt-margin-right-medium">Let's start</a>
<a href="http://svitlanalesiv.me/assignment4/light_kit.zip">
<button class="lt-button-default-1" >Download</button></a>
</div>
</div>
</section>
<section class="lt-background-cover lt-height-medium lt-visible-medium" style="background-image: url(img/dragon_fly_900.jpg);">
<div class="lt-padding-top-xlarge">
<div class="lt-margin-bottom-small lt-margin-left-medium lt-hero-header">
<h1>LightKit</h1>
<p>A front-end framework for developing websites fast.</p>
<a href="documentation_intro.html" class="lt-button-default-1 lt-margin-right-medium">Let's start</a>
<a href="http://svitlanalesiv.me/assignment4/light_kit.zip">
<button class="lt-button-default-1">Download</button></a>
</div>
</div>
</section>
<section class="lt-background-cover lt-height-medium lt-visible-small" style="background-image: url(img/dragon_fly_700.jpg);">
<div class="lt-padding-top-large">
<div class="lt-margin-left-small lt-margin-top-large lt-hero-header">
<h1>LightKit</h1>
<p>A front-end framework for developing websites fast.</p>
<a href="documentation_intro.html" class="lt-button-default-1 lt-margin-right-small">Let's start</a>
<a href="http://svitlanalesiv.me/assignment4/light_kit.zip">
<button class="lt-button-default-1" >Download</button></a>
</div>
</div>
</section>
</div>
</main>
<footer class="lt-col-1-6-desktop lt-row-6-6-desktop
lt-col-1-3-tablet lt-row-5-5-tablet
lt-col-1-1-mobile lt-row-4-4-mobile
lt-text-right lt-padding-right-medium">
<p>© LightKit</p>
</footer>
</body>
</html>