-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontext-menu.php
More file actions
67 lines (60 loc) · 1.89 KB
/
context-menu.php
File metadata and controls
67 lines (60 loc) · 1.89 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
<!doctype html>
<html lang="en">
<?php include ('part-head.php') ?>
<body>
<?php include ('part-header.php') ?>
<div class="container">
<div class="wrapper">
<h3>Using our Predefined HTML Classes</h3>
<p>
These are examples of different ways to use the Naked CSS Grid. Since Naked is mobile-first, we'll stack content by default. You do have access to an entirely separate small grid to use up to the 768px breakpoint. This means you can create some pretty complex layouts and even drop columns if you want.
</p>
<hr>
<h1 class="title">Context Menu</h1>
<hr>
<ul class="context-menu">
<li>
<a href="#">Design</a>
</li>
<li>
<a href="#">Web Design</a>
</li>
<li>
<a href="#">Web Development</a>
</li>
<li class="divider"></li>
<li>
<a href="#">Illustrations</a>
</li>
<li>
<a href="#">Designer</a>
</li>
</ul>
<div class="html">
<div class="highlight">
<pre class="prettyprint">
<ul class="context-menu">
<li>
<a href="#">Web Design</a>
</li>
<li>
<a href="#">Web Development</a>
</li>
<li class="divider"></li>
<li>
<a href="#">Illustrations</a>
</li>
<li>
<a href="#">Designer</a>
</li>
</ul>
</pre>
</div>
</div>
<hr>
</div>
</div>
<?php include ('part-footer.php') ?>
<?php include ('part-script.php') ?>
</body>
</html>