-
Notifications
You must be signed in to change notification settings - Fork 0
/
no_classes.html
116 lines (106 loc) · 3.64 KB
/
no_classes.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Poly UI Kit</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<div>
<div>
<a href="/">
<img alt="circles logo" src="images/logo.png">
</a>
</div>
<div>
<nav role="navigation">
<ul>
<li><a href="#type">Typography</a></li>
<li><a href="#buttons">Buttons</a></li>
<li><a href="#forms">Form</a></li>
<li><a href="#images">Images</a></li>
<li><a href="#grid">Grid</a></li>
</ul>
</nav>
</div>
</div>
<div>
<div>
<div>
<p>This is what the navigation menu looks like when the screen is at 769px or higher. When the screen is less than 769px, the menu will be displayed vertically.</p>
</div>
</div>
</div>
<div>
<div>
<div>
<h4 id="type">Typography</h4>
<h1>Take a look at this amazing headline</h1>
<p>This is a typical paragraph for the UI Kit. <a href="#">Here is what a link might look like</a>. The typical font family for this kit is Helvetica Neue. This kit is intended for clean and refreshing web layouts. No jazz hands here, just the essentials to make dreams come true, with minimal clean web design. The kit comes fully equipped with everything from full responsive media styling to buttons to form fields. <em>I enjoy using italics as well from time to time</em>. Fell free to create the most amazing designs ever with this kit. I truly hope you enjoy not only the kit but this amazing paragraph as well. :)</p>
<blockquote>You know what really gets me going? A really nice set of block quotes. That's right, block quotes that say, "Hey, I'm an article you want to read and nurture."</blockquote>
</div>
</div>
<div>
<form>
<legend id="forms">Form Elements</legend>
<img src="http://treehouse-code-samples.s3.amazonaws.com/poly/img/avatar.png" alt="Avatar">
<label for="username">Username:</label>
<input type="text" id="username" placeholder="Username">
<label for="password">Password:</label>
<input type="password" id="password" placeholder="Password">
<button type="submit" value="Login">Login</button>
</form>
</div>
</div>
<h4 id="images">Images</h4>
<div>
<div>
<img src="http://treehouse-code-samples.s3.amazonaws.com/poly/img/sample.jpg" alt="sample image">
</div>
<div>
<img src="http://treehouse-code-samples.s3.amazonaws.com/poly/img/avatar.png" alt="Avatar">
</div>
</div>
<h4 id="buttons">Buttons</h4>
<div>
<div>
<button>default</button>
<button>success</button>
<button>error</button>
<button>warning</button>
<button>info</button>
</div>
</div>
<h4 id="grid">Grid System</h4>
<div>
<div>.grid__col--12</div>
</div>
<div>
<div>.grid__col--6</div>
<div>.grid__col--6</div>
</div>
<div>
<div>.grid__col--4</div>
<div>.grid__col--4</div>
<div>.grid__col--4</div>
</div>
<div>
<div>.grid__col--3</div>
<div>.grid__col--3</div>
<div>.grid__col--3</div>
<div>.grid__col--3</div>
</div>
<div>
<div>.grid__col--5</div>
<div>.grid__col--7</div>
</div>
<div>
<div>.grid__col--8</div>
<div>.grid__col--4</div>
</div>
<div>
<div>.centered .grid__col--7</div>
</div>
</body>
</html>