-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmysemantic.html
184 lines (148 loc) · 4.72 KB
/
mysemantic.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
175
176
177
178
179
180
181
182
183
184
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<title>Semantic Button test</title>
<link rel="stylesheet" type="text/css" href="../dist/semantic.js">
<link rel="stylesheet" type="text/css" href="../dist/semantic.css">
<link rel="stylesheet" type="text/css" href="../dist/custom.css">
<link rel="stylesheet" type="text/css" href="../dist/components/button.css">
<link rel="stylesheet" type="text/css" href="../dist/components/reset.css">
<link rel="stylesheet" type="text/css" href="../dist/components/site.css">
</head>
<body>
<button class="ui labeled icon button">
<i class="pause icon"></i>
Pause
</button>
<button class="ui right labeled icon button">
<i class="right arrow icon"></i>
Next
</button>
<div class="ui inverted segment">
<button class="ui inverted button">Standard</button>
<button class="ui inverted red button">Red</button>
<button class="ui inverted orange button">Orange</button>
<button class="ui inverted yellow button">Yellow</button>
<button class="ui inverted olive button">Olive</button>
<button class="ui inverted green button">Green</button>
<button class="ui inverted teal button">Teal</button>
<button class="ui inverted blue button">Blue</button>
<button class="ui inverted violet button">Violet</button>
<button class="ui inverted purple button">Purple</button>
<button class="ui inverted pink button">Pink</button>
<button class="ui inverted brown button">Brown</button>
<button class="ui inverted grey button">Grey</button>
<button class="ui inverted black button">Black</button>
</div>
<div class="ui buttons">
<button class="ui button">One</button>
<button class="ui button">Two</button>
<button class="ui button">Three</button>
</div>
<div class="ui buttons">
<button class="ui button">Cancel</button>
<div class="or" data-text="ou"></div>
<button class="ui positive button">Save</button>
</div>
<br />
<br />
<div class="ui animated button" tabindex="0">
<div class="visible content">Next</div>
<div class="hidden content">
<i class="right arrow icon"></i>
</div>
</div>
<div class="ui vertical animated button" tabindex="0">
<div class="hidden content">Shop</div>
<div class="visible content">
<i class="shop icon"></i>
</div>
</div>
<div class="ui animated fade button" tabindex="0">
<div class="visible content">Sign-up for a Pro account</div>
<div class="hidden content">
$12.99 a month
</div>
</div>
<br />
<br />
<button class="ui facebook button">
<i class="facebook icon"></i>
Facebook
</button>
<button class="ui twitter button">
<i class="twitter icon"></i>
Twitter
</button>
<button class="ui google plus button">
<i class="google plus icon"></i>
Google Plus
</button>
<button class="ui vk button">
<i class="vk icon"></i>
VK
</button>
<button class="ui linkedin button">
<i class="linkedin icon"></i>
LinkedIn
</button>
<button class="ui instagram button">
<i class="instagram icon"></i>
Instagram
</button>
<button class="ui youtube button">
<i class="youtube icon"></i>
YouTube
</button>
<br />
<br />
<br />
<br />
<div class="ui slider checkbox">
<input type="checkbox" name="newsletter">
<label>Accept terms and conditions</label>
</div>
<div class="ui checkbox">
<input type="checkbox" name="example">
<label>Make my profile visible</label>
</div>
<div class="ui radio checkbox">
<input type="radio" name="radio" checked="checked">
<label>Radio choice</label>
</div>
<br />
<br />
<br />
<br />
<div class="ui large buttons">
<button class="ui button active">One</button>
<div class="or"></div>
<button class="ui button">Two</button>
</div>
<br/>
<br />
<div class="ui center aligned basic segment">
<div class="ui left icon action input">
<i class="search icon"></i>
<input type="text" placeholder="Order #">
<div class="ui blue submit button">Search</div>
</div>
<div class="ui horizontal divider">
Or
</div>
<div class="ui teal labeled icon button">
Create New Order
<i class="add icon"></i>
</div>
</div>
<br/>
<br />
<button class="ui icon button">
<i class="cloud icon"></i>
</button>
</div>
</div>
</div>
</body>
</html>