-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html_back
More file actions
114 lines (89 loc) · 3.38 KB
/
index.html_back
File metadata and controls
114 lines (89 loc) · 3.38 KB
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
109
110
111
112
113
114
<html>
<head>
<title>Essence CSS</title>
<script src="js/sidePanel.js"></script>
<link rel="stylesheet" type="text/css" href="css/essence.css"/>
</head>
<body>
<div id="sideNav" class="sideNavigation">
<!--<a href="javascript:void(0)" class="closeButton" onclick="closeSidePanelCover('sideNav')">×</a>-->
<a href="javascript:void(0)" class="closeButton" onclick="closeSidePanelPush('sideNav', 'baseContent')">×</a>
<a href="#">Test</a>
</div>
<div id="baseContent">
<div class="blue-title-bar">
<!--<span style="cursor:pointer;float: left;padding-right: 40px" onclick="openSidePanelCover('sideNav', '540px')"><h1>☰</h1></span>-->
<span style="cursor:pointer;float: left;padding-right: 40px" onclick="openSidePanelPush('sideNav', 'baseContent','540px')"><h1>☰</h1></span>
<h1>I am king!</h1>
</div>
<p>Testing stuff</p>
<br>
<button class="">Press Me!</button>
<button class="material-button">Testing!</button>
<button class="button-flat green ">Testing Button</button>
<button class="button-flat blue rounded">Testing Second Button</button>
<br><br>
<!--Start testing new grid system-->
<div class="three-width grid-x cell-2 test-grid">
<div class="grid-y cell-3 "> <!--Left Container-->
<span class="blue-title-bar">Testing</span>
<div class="panel grid-x full-width cell-3">
Inner Setup <br>
Test
<br>
Boop
<br>
Jumping through hoops!
</div>
</div>
<div class="grid-y "> <!--Right Container-->
<span>Testing 2</span>
<div class="grid-x cell-1 full-width panel">
<p>Second Inner Testing</p>
</div>
</div>
</div>
<br><br>
<hr>
<br><br>
<!-- Test grid 2 -->
<div class="three-width grid-4">
<div class="" style="background-color: purple; width: 100%;">
<div class="panel">
<p>Testing some other stuff out</p>
<p>Line2</p>
<p>Line3</p>
</div>
</div>
<div class="" style="background-color: orange;">
<div class="panel">
<span>Test</span>
<p style="background-color: yellow;">Second Testing of other stuff in other grid</p>
</div>
</div>
<div class="" style="background-color: orange;">
<div class="panel">
<span>Test</span>
<p style="background-color: yellow;">Second Testing of other stuff in other grid</p>
</div>
</div>
</div>
<br><br>
<hr>
<br><br>
<!-- Test Grid 3 -->
<div class="three-width grid-container">
<div class="cell panel grid-1" style="">
Testing
</div>
<div class="cell panel grid-10">
Testing
</div>
<!-- <div class="panel">
</div> -->
</div>
</div>
</body>
<footer>
</footer>
</html>