-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
174 lines (123 loc) · 3.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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
<!doctype html>
<html class="platform-web">
<head>
<meta charset="utf-8">
<title>plugin-ui-kit</title>
<link rel="stylesheet" href="ui-kit.css">
</head>
<body>
<h1>Photoshop UI Kit</h1>
<section>
<h2>Tabs</h2>
<ul class="tabs">
<li>Normal</li>
<li class="active">Active</li>
<li class="disabled">Disabled</li>
</ul>
<hr>
<h3>Disabled</h3>
<p>Any element can be disabled by adding the .disabled class.</p>
<ul class="disabled tabs">
<li>Tab 1</li>
<li>Tab 2</li>
<li>Tab 3</li>
</ul>
<hr>
</section>
<section>
<h2>Buttons</h2>
<h3>Default button</h3>
<p>Use the element you need, like <button>, <span>, <a>…<p>
<button>Button</button>
<button class="flat">Button</button>
<span class="disabled button">Span</span>
<a href="#" class="active button">Link</a>
<hr>
<h3>Green buttons</h3>
<button class="green">Button</button>
<span class="disabled green button">Span</span>
<a href="#" class="active green button">Link</a>
<hr>
<h3>Red buttons</h3>
<button class="red">Button</button>
<span class="disabled red button">Span</span>
<a href="#" class="active red button">Link</a>
<hr>
<h3>Navigation buttons</h3>
<ul class="tabs nav">
<li>◀</li>
<li>►</li>
</ul>
<hr>
</section>
<section>
<h2>Select</h2>
<div class="select-container">
<select>
<option>Option 1</option>
<option>Option 2</option>
<option>Option 3</option>
</select>
</div>
<div class="select-container">
<select class="flat">
<option>Option 1</option>
<option>Option 2</option>
<option>Option 3</option>
</select>
</div>
<hr>
</section>
<section>
<h2>Form Elements</h2>
<h3>Default input</h3>
<p>input[type=text,email,password,…]</p>
<input type="text" placeholder="Your placeholder goes here">
<hr>
<h3>Textarea</h3>
<p>textarea</p>
<textarea rows="10" placeholder="Your placeholder goes here"></textarea>
<hr>
<h3>Search input</h3>
<p>input[type=search]</p>
<input type="search" placeholder="Search for something…">
<hr>
<h3>Number input</h3>
<p>input[type=number]</p>
<input type="number" max="100" min="0" value="0" step="10">
<hr>
<h3>Range input</h3>
<p>input[type=range]</p>
<input type="range">
<hr>
<h3>Checkboxes</h3>
<label>
<input type="checkbox" checked>Active
</label>
<label>
<input type="checkbox" checked>Inactive
</label>
<label class="disabled">
<input type="checkbox" disabled>Disabled
</label>
<label class="disabled">
<input type="checkbox" checked disabled>Disabled
</label>
<hr>
<h3>Radio</h3>
<label>
<input type="radio" name="radio" checked>Active
</label>
<label>
<input type="radio" name="radio">Inactive
</label>
<label class="disabled">
<input type="radio" name="radio" disabled>Disabled
</label>
<label class="disabled">
<input type="radio" checked disabled>Disabled
</label>
<hr>
</section>
</body>
</html>