-
Notifications
You must be signed in to change notification settings - Fork 577
/
Copy pathbars-tabs.html
39 lines (36 loc) · 1.03 KB
/
bars-tabs.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Bars example</title>
<!-- Photon.css -->
<link rel="stylesheet" href="/dist/css/photon.css">
<!-- Photon-theme-osx.css -->
<link rel="stylesheet" href="/dist/css/photon-theme-osx.css">
</head>
<body>
<div class="window">
<header class="toolbar toolbar-header">
<h1 class="title">Header with tabs</h1>
</header>
<div class="tab-group">
<div class="tab-item">
<span class="icon icon-cancel icon-close-tab"></span>
Tab
</div>
<div class="tab-item active">
<span class="icon icon-cancel icon-close-tab"></span>
Tab active
</div>
<div class="tab-item">
<span class="icon icon-cancel icon-close-tab"></span>
Tab
</div>
<div class="tab-item tab-item-fixed">
<span class="icon icon-plus"></span>
</div>
</div>
</div>
</body>
</html>