-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.html
81 lines (69 loc) · 1.67 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
<html>
<head>
<meta charset="utf-8">
<title>Mac OSX GUI Prototyping Set</title>
<link href="ui.css" rel="stylesheet" type="text/css">
</head>
<body>
<div class="mac app frame">
<div class="topbar high">
<div class="first-row clearfix">
<div class="trafficlights">
Traffic
</div>
<div class="title">
GUI Prototype
</div>
</div>
<div class="second-row clearfix">
<a href="#" class="btn ico i-options">Btn</a>
<a href="#" class="btn first-child act">Button</a>
<a href="#" class="btn last-child">Button</a>
<a href="#" class="btn first-child ico i-arrow-left">Button</a>
<a href="#" class="btn last-child ico i-arrow-right">Button</a>
<div class="right">
<label for="search" class="search-field"></label>
<input name="search" class="input-field" type="text">
</div>
</div>
</div>
<!-- Iconbar -->
<div class="iconlist">
<div class="block">
<a href="index-nosidebar.html" class="home act">Home</a>
<a href="#" class="tag">Tag</a>
<a href="#" class="navigate">Flag</a>
</div>
<div class="syncing">
<div class="slider">
Hello
</div>
</div>
</div>
<!-- End Iconbar -->
<!-- Sidebar -->
<div class="sidebar">
<h2>Active</h2>
<ul>
<li>Index.html</li>
<li>main.less</li>
</ul>
<h2>Project</h2>
<ul>
<li>Index.html</li>
<li>main.less</li>
</ul>
<footer>
<a href="" class="btn ico nobg i-add left">btn</a>
<a href="" class="btn ico nobg i-options right">btn</a>
</footer>
</div>
<!-- End Sidebar -->
<!-- Options -->
<div class="options">
Hallo
</div>
<!-- End Options -->
</div>
</body>
</html>