-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathalert.php
More file actions
107 lines (99 loc) · 3.12 KB
/
alert.php
File metadata and controls
107 lines (99 loc) · 3.12 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
<!doctype html>
<html lang="en">
<?php include ('part-head.php') ?>
<body>
<?php include ('part-header.php') ?>
<div class="container">
<div class="wrapper">
<h1 class="title">Alert</h1>
<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>
<h4 class="sub-title">Alert Error</h4>
<div class="ex-alert-content">
<div class="alert error">
<button type="button" class="close">×</button>
<h6>Error!</h6>
<p>Error Example</p>
</div>
</div>
<div class="html">
<div class="highlight">
<pre class="prettyprint">
<div class="alert error">
<button type="button" class="close">×</button>
<h6>Error!</h6>
<p>Error Example</p>
</div>
</pre>
</div>
</div>
<hr>
<h4 class="sub-title">Alert Success</h4>
<div class="ex-alert-content">
<div class="alert success">
<button type="button" class="close">×</button>
<h6>Success!</h6>
<p>Success Example</p>
</div>
</div>
<div class="html">
<div class="highlight">
<pre class="prettyprint">
<div class="alert success">
<button type="button" class="close">×</button>
<h6>Success!</h6>
<p>Success Example</p>
</div>
</pre>
</div>
</div>
<hr>
<h4 class="sub-title">Alert Warning</h4>
<div class="ex-alert-content">
<div class="alert warning">
<button type="button" class="close">×</button>
<h6>Warning!</h6>
<p>Warning Example</p>
</div>
</div>
<div class="html">
<div class="highlight">
<pre class="prettyprint">
<div class="alert warning">
<button type="button" class="close">×</button>
<h6>Warning!</h6>
<p>Warning Example</p>
</div>
</pre>
</div>
</div>
<hr>
<h4 class="sub-title">Alert Info</h4>
<div class="ex-alert-content">
<div class="alert info">
<button type="button" class="close">×</button>
<h6>Info!</h6>
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris nisl ipsum, bibendum eu semper eu, tristique a nisi. Nullam mattis iaculis interdum. Curabitur sed sem at est mollis gravida. Nullam vitae vestibulum ligula. Proin tincidunt, dolor non ornare malesuada, turpis risus iaculis nulla, vel consectetur justo ligula eu justo.
</p>
</div>
</div>
<div class="html">
<div class="highlight">
<pre class="prettyprint">
<div class="alert info">
<button type="button" class="close">×</button>
<h6>Info!</h6>
<p>…</p>
</div>
</pre>
</div>
</div>
<hr>
</div>
</div>
<?php include ('part-footer.php') ?>
<?php include ('part-script.php') ?>
</body>
</html>