-
Notifications
You must be signed in to change notification settings - Fork 0
/
examples.html
104 lines (92 loc) · 4.06 KB
/
examples.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Examples</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">
<!-- main 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">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 lt-nav-active-a">Examples</a></li>
</ul>
</nav>
</header>
<main class="lt-col-1-6-desktop lt-row-2-3-desktop
lt-col-1-3-tablet lt-row-2-3-tablet
lt-col-1-1-mobile lt-row-2-3-mobile
adjust-scroll">
<div>
<!-- hero images for different sizes-->
<section class="lt-background-cover lt-height-large lt-visible-large" style="background-image: url(img/woodpecker_1920.jpg);">
<div class="lt-padding-top-xlarge lt-padding-left-medium lt-hero-header">
<h1>Examples</h1>
<p>Here you can see some of the framework features.</p>
<a href="http://svitlanalesiv.me/assignment4/light_kit.zip">
<button class="lt-button-default-1 lt-margin-top-small">Download</button></a>
</div>
</section>
<section class="lt-background-cover lt-height-medium lt-visible-medium" style="background-image: url(img/woodpecker_1600.jpg);">
<div class="lt-padding-top-large lt-padding-left-medium lt-hero-header">
<h1 class="lt-margin-top-small">Examples</h1>
<p>Here you can see some of the framework features.</p>
<a href="http://svitlanalesiv.me/assignment4/light_kit.zip">
<button class="lt-button-default-1 lt-margin-top-small">Download</button></a>
</div>
</section>
<section class="lt-background-cover lt-height-medium lt-visible-small" style="background-image: url(img/woodpecker_1200.jpg);">
<div class="lt-padding-top-large lt-padding-left-medium lt-hero-header">
<h1>Examples</h1>
<p>Here you can see some of the framework features.</p>
<a href="http://svitlanalesiv.me/assignment4/light_kit.zip">
<button class="lt-button-default-1 lt-margin-top-small">Download</button></a>
</div>
</section>
</div>
<!-- nested grid -->
<div class="lt-grid-container lt-margin-top-medium lt-margin-left-medium">
<section class="lt-col-1-2-desktop lt-row-1-1-desktop
lt-col-1-1-tablet lt-row-1-1-tablet
lt-col-1-1-mobile lt-row-1-1-mobile
lt-up-animation">
<a href="examples_hero.html" class="lt-img-link">
<img src="img/hero_small.jpg" alt="icon for hero example page" >
<h2>Hero</h2>
</a>
</section>
<section class="lt-col-3-4-desktop lt-row-1-1-desktop
lt-col-1-1-tablet lt-row-2-2-tablet
lt-col-1-1-mobile lt-row-2-2-mobile
lt-up-animation">
<a href="examples_grid.html" class="lt-img-link">
<img src="img/grid_small.jpg" alt="icon for grid example page" >
<h2>Grid</h2>
</a>
</section>
<section class="lt-col-5-6-desktop lt-row-1-1-desktop
lt-col-1-1-tablet lt-row-3-3-tablet
lt-col-1-1-mobile lt-row-3-3-mobile
lt-up-animation">
<a href="examples_nav.html" class="lt-img-link">
<img src="img/nav_small.jpg" alt="icon for nav example page">
<h2>Navigation</h2>
</a>
</section>
</div>
</main>
<footer class="lt-col-1-6-desktop lt-row-4-4-desktop
lt-col-1-3-tablet lt-row-4-4-tablet
lt-col-1-1-mobile lt-row-4-4-mobile
lt-text-right lt-padding-right-medium">
<p>© LightKit</p>
</footer>
</body>
</html>