Skip to content
This repository was archived by the owner on Sep 5, 2019. It is now read-only.

Commit 8fa3da9

Browse files
committed
Update
1 parent aee0685 commit 8fa3da9

File tree

5 files changed

+49
-2
lines changed

5 files changed

+49
-2
lines changed

gruntfile.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@ module.exports = function(grunt) {
1414
'node_modules/css-ui-dropdown-menu/css/style.dropdown.css',
1515
'node_modules/css-ui-tooltip/css/style.tooltip.css',
1616
'node_modules/css-ui-tooltip/css/style.tooltip.theme.css',
17-
'node_modules/css-ui-table/css/style.tables.css'
17+
'node_modules/css-ui-table/css/style.tables.css',
18+
'node_modules/css-ui-modal-box/css/style.modal.box.css'
1819
]},
1920
{'www/css/cssui-menu-light.min.css': [
2021
'node_modules/css-ui-responsive-menu/css/style.menu.light.css'

modal.box/index.html

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1">
6+
<title>CSS UI - Sign in template</title>
7+
8+
<!-- css -->
9+
<link rel="stylesheet" href="../www/css/cssui.min.css">
10+
<style>
11+
body {
12+
font-family: 'Open Sans', sans-serif;
13+
}
14+
</style>
15+
</head>
16+
<body>
17+
<div class="container" style="width: 600px; padding-top: 50px;">
18+
19+
<!-- modal box -->
20+
<div class="wrapper align center">
21+
<h2>CSS UI - Modal Box</h2>
22+
<a href="#modal">Open</a>
23+
<div id="modal" class="modal-box">
24+
<div>
25+
<a href="#close" title="Close" class="modal-close align center">
26+
<i class="fa fa-times" aria-hidden="true"></i>
27+
</a>
28+
<h2>Modal Box</h2>
29+
<p>This is an example of modal box.</p>
30+
</div>
31+
</div>
32+
</div>
33+
</div>
34+
</body>
35+
</html>

package-lock.json

Lines changed: 10 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
"css-ui-sign-in": "^1.1.2",
1010
"css-ui-table": "^1.0.8",
1111
"css-ui-tooltip": "^2.0.6",
12+
"css-ui-modal-box": "^1.0.7",
1213
"grunt": "^1.0.3",
1314
"grunt-contrib-copy": "^1.0.0",
1415
"grunt-contrib-cssmin": "^3.0.0",

www/css/cssui.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)