Update index.html
This commit is contained in:
parent
7fc5bdd6de
commit
980431c9b8
1 changed files with 10 additions and 1 deletions
11
index.html
11
index.html
|
@ -14,10 +14,19 @@
|
|||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/angular.ui-grid/3/ui-grid.min.css">
|
||||
<link rel="stylesheet" href="style.css">
|
||||
</head>
|
||||
<style>
|
||||
body {
|
||||
background-color: white;
|
||||
}
|
||||
.dark-mode {
|
||||
background-color: #202124;
|
||||
color: white;
|
||||
}
|
||||
</style>
|
||||
<body ng-controller="BTorrentCtrl" ng-cloak="">
|
||||
<header>
|
||||
<h1>βTorrent<span class="version"> v{{$root.version}}</span></h1>
|
||||
<div class="views" ng-show="$root.client.torrents.length == 0"><a ng-href="/#">Full</a> | <a ng-href="/download">Single Download</a> | <a ng-href="/view">Stream / View</a></div>
|
||||
<div class="views" ng-show="$root.client.torrents.length == 0"><a ng-href="/#">Full</a> | <a ng-href="/download">Single Download</a> | <a ng-href="/view">Stream / View</a> | <a ng-href="#" href="#" onclick="modeTheme()">Dark/Light</a> </div>
|
||||
<div class="aligncenter" style="width: 468px; display: inline-block;">
|
||||
</div>
|
||||
</header>
|
||||
|
|
Loading…
Reference in a new issue