-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheditorSimpleHome (test).html
108 lines (84 loc) · 2.75 KB
/
editorSimpleHome (test).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
<!DOCTYPE html>
<html>
<head>
<script src="http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.11.3.min.js"></script>
<link rel="stylesheet" type="text/css" href="homestyle.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap-theme.min.css">
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
<!-- Google Font -->
<link href='https://fonts.googleapis.com/css?family=Abel' rel='stylesheet' type='text/css'>
<title> Editor Home </title>
</head>
<body>
<nav class="navbar navbar-custom navbar-static">
<div class="container-fluid">
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav">
<li id = "flogo" >
<p> GONGBU</p>
</li>
<li id = "llogo">
<p> STYLE </p>
</li>
<li> <a class = "navbtn" href=""> NOTES </a></li>
<li> <a class = "navbtn" href=""> NEW </a></li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li><a class = "navbtn" href="#"> SETTINGS </a></li>
<li>
<a class = "navbtn" href = "#">
PROFILE
</a>
</li>
</ul>
</div><!-- /.navbar-collapse -->
</div><!-- /.container-fluid -->
</nav>
<!-- This will be the Side Menu -->
<div>
<div id = "sideMenu" class="panel panel-default">
<div class="panel-body">
<img class ="sideimage" src = "Assets/My Notes.png"/> My Notes
</div>
<br/>
<hr/>
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
<div class="panel-body">
<img class = "sideimage" src ="Assets/Favorites.png" /> Favorites
</div>
<div class="panel-body">
<img class = "sideimage" src ="Assets/Recent.png" /> Recent
</div>
<div class="panel-body">
<img class = "sideimage" src ="Assets/Trash.png" /> Trashed
</div>
<div>
<img id = "logo" class = "sideimage" src ="Assets/Logo.png" />
</div>
</div>
</div>
<!-- This will be the Body -->
<div id= "docitem" >
<img src="Assets/Placebolder.png"
</div>
<script>
var height = $(window).height(); // returns height of browser viewport
var width = $(window).width(); // returns width of browser viewport
$('#sideMenu').css('height', height*1);
$('#sideMenu').css('width', width*0.2);
</script>
<!-- This will be the Body -->
</body>
</html>