forked from arenaxr/arena-web-core
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathheader-old.html
108 lines (100 loc) · 3.28 KB
/
header-old.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
<!-- arena-core header for non-3d scene pages -->
<style>
/* Navbar styles need to disinherit from list.css */
#header ul li {
cursor: unset;
position: unset;
padding: unset;
list-style-type: unset;
background: unset;
font-size: unset;
transition: unset;
-webkit-user-select: unset;
-moz-user-select: unset;
-ms-user-select: unset;
user-select: unset;
}
@media only screen and (min-width: 850px) {
.brand {
margin-right: 9%;
}
}
.navbar .brand img {
max-height: 16px;
}
.navbar .brand {
padding-left: 12px;
}
.navbar-inner {
padding-top: 8px;
padding-bottom: 8px;
font-size: 16px !important;
}
/* fix padding under menu after resize */
@media screen and (min-width: 767px) {
body {
padding-top: 60px;
}
.navbar-inner {
padding-right: 40px;
}
.navbar .nav > li > a {
padding-left: 8px;
padding-right: 8px;
}
}
#btn-copy-store-path {
display: none;
}
</style>
<!-- Bootstrap 2.3.2 styled header -->
<div class="navbar navbar-inverse navbar-fixed-top">
<div class="navbar-inner">
<div class="container-fluid">
<button type="button" class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="brand" href="/"><img alt="arena logo" src="/static/images/arena-logo-white.png" /></a>
<div class="nav-collapse collapse">
<ul class="nav">
<li class="nav-item">
<a href="/scenes">Scenes</a>
</li>
<li class="nav-item">
<a href="/build">Builder</a>
</li>
<li class="nav-item">
<a href="/programs">Programs</a>
</li>
<li class="nav-item">
<a href="/network">Network</a>
</li>
<li class="nav-item">
<a href="/files">File Store</a>
</li>
<li class="nav-item">
<!--https://atlas.conix.io-->
<a class="coming-soon" href="/">ATLAS</a>
</li>
<li class="nav-item">
<a href="https://docs.arenaxr.org">Documentation</a>
</li>
</ul>
<ul class="nav pull-right">
<!-- Copy Filestore Path -->
<li class="nav-item">
<a href="#" id="btn-copy-store-path"
><i class="nav-link fa fa-link" title="Copy Store Path"></i
></a>
</li>
<li class="dropdown">
<a href="#" id="auth-dropdown"></a>
</li>
</ul>
</div>
<!--/.nav-collapse -->
</div>
</div>
</div>