-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdashboard.html
120 lines (108 loc) · 3.96 KB
/
dashboard.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
109
110
111
112
113
114
115
116
117
118
119
120
<!DOCTYPE html>
<html>
<head>
<title>Getting Started | Zero.CSS</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="css/zero.css">
<link rel="stylesheet" type="text/css" href="css/dashboard.css">
<link rel="stylesheet" type="text/css" href="css/hybrid.css">
<script src="js/highlight.pack.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/highlight.min.js"></script>
<!-- <link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet"> -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css"
integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf" crossorigin="anonymous">
<style>
* {
/* border: 1px solid black !important; */
}
</style>
</head>
<body id="body">
<div id="overlay"></div>
<div id="overlay-sidebar"></div>
<div class="sidebar">
<div class="logo d-flex flex-center">
<img src="image/logo.png" alt="Zero.CSS">
</div>
<nav>
<ul>
<li class="active">
<a href="">Getting Started</a>
</li>
<li>
<a href="">Layout</a>
</li>
<ul class="list-child">
<li>
<a href="">Grid Sytem</a>
</li>
<li>
<a href="">Grid Push</a>
</li>
</ul>
<li>
<a href="">Utilities</a>
</li>
<li>
<a href="">Components</a>
</li>
<ul class="list-child">
<li>
<a href="">Card</a>
</li>
<li>
<a href="">Form</a>
</li>
<li>
<a href="">Table</a>
</li>
<li>
<a href="">Modal Box</a>
</li>
</ul>
<li>
<a href="">Theme</a>
</li>
<li>
<a href="">About</a>
</li>
</ul>
</nav>
</div>
<main>
<div class="wrapper">
<div class="row">
<h2>Zero.CSS</h2> <br>
<p>A Responsive CSS framework based on Material Design style</p>
<p>Version 1.1</p> <br>
<a href="https://github.com/daniszaidan/Zero-CSS/archive/master.zip" target="_blank">
<button type="button" class="btn btn-primary">Download</button>
</a>
<a href="">
<button type="button" class="btn btn-info">About</button>
</a>
<br> <br> <br>
</div>
<div class="row">
<div class="card clearfix">
<p class="f-left">This Project is Work in Progress</p>
<a href="https://github.com/daniszaidan/Zero-CSS" target="_blank">
<button type="button" class="btn btn-github f-right"><i
class="fab fa-github"></i>Github</button>
</a>
</div>
</div>
<!-- <h3>Introduction</h3> <br>
<p>A Responsive CSS framework based on Material Design style</p>
<br><br><br>
<div class="row">
<blockquote class="blockquote bq-red">
<p>Work in Progress</p>
</blockquote>
</div> -->
</div>
</main>
<!-- <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script> -->
<script src="js/script.js"></script>
</body>
</html>