-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
executable file
·143 lines (126 loc) · 5.7 KB
/
index.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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Pure Tutorial</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Place favicon.ico and apple-touch-icon.png in the root directory -->
<link rel="stylesheet" href="http://yui.yahooapis.com/pure/0.1.0/pure-min.css">
<link rel="stylesheet" href="http://weloveiconfonts.com/api/?family=fontawesome">
<link rel="stylesheet" href="css/main.css">
<script src="js/vendor/modernizr-2.6.2.min.js"></script>
</head>
<body>
<!--[if lt IE 7]>
<p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
<![endif]-->
<!-- Add your site or application content here -->
<header>
<nav class="pure-menu pure-menu-open pure-menu-horizontal pure-menu-blackbg">
<a href="#" class="pure-menu-heading">liyicky was here</a>
<ul>
<li class="pure-menu-selected"><a href="#">Dashboard</a></li>
</ul>
</nav>
</header>
<section class="dashboard pure-g-r clearfix">
<div class="pure-u-1 dashboard-piece dashboard-piece-red dashboard-piece-logo">
</div>
<div class="pure-u-1-3 dashboard-piece dashboard-piece-blue">
<div class="dashboard-content">
<h2><i class="fontawesome-twitter"></i></h2>
<p class="dashboard-metric">1,000,000+ followers<span class="light"><i class="fontawesome-angle-up"></i>My Nigs</span></p>
</div>
</div>
<div class="pure-u-1-3 dashboard-piece dashboard-piece-orange">
<div class="dashboard-content">
<h2><i class="fontawesome-github"></i></h2>
<p class="dashboard-metric">
2000 Commits
<div class="light bar-horizontal">
<div class="bar-horizontal-bar" style="width:57%">
57% Capacity
</div>
</div>
</p>
</div>
</div>
<div class="pure-u-1-3 dashboard-piece dashboard-piece-yellow">
<div class="dashboard-content">
<p class="dashboard-metric">
<h2><i class="fontawesome-check"></i></h2>
<div class="dashboard-metric">
<strong>63 / 90</strong><br><small>Tasks Complete</small>
</div>
</p>
</div>
<div class="bar-vertical" style="height:70%;"></div>
</div>
</section>
<section class="dashboard pure-g-r clearfix">
<div class="pure-u-2-3 dashboard-piece dashboard-piece-gray dashboard-piece-events">
<div class="dashboard-content">
<p class="dashboard-metric">
<h2><i class="fontawesome-calendar"></i></h2>
<h3>Upcoming Events</h3>
<table class="pure-table pure-table-center pure-table-horizontal pure-table-dark">
<thead>
<tr>
<th>With:</th>
<th>When:</th>
<th>Where:</th>
</tr>
</thead>
<tbody>
<tr class="pure-table-odd">
<td>Jason Cheladyn</td>
<td>My House</td>
<td>Jan, 4, 4:10pm</td>
</tr>
<tr>
<td>Tatiana Tarry</td>
<td>New York, New York</td>
<td>Jan, 28, 4:11pm</td>
</tr>
</tbody>
</table>
</p>
</div>
</div>
<div class="pure-u-1-3 dashboard-piece dashboard-piece-purple weather weather-rain">
<div class="dashboard-content">
<p class="dashboard-metric">
<h2><i class="fontawesome-umbrella"></i></h2>
<div class="dashboard-metric">
<strong>80% Chance</strong></br><small>of Rainbows</small>
<div class="light bar-horizontal">
<div class="bar-horizontal-bar" style="width:80%">80%</div>
</div>
</div>
</p>
</div>
</div>
</section>
<footer>
© 2014 liyickywashere
</footer>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="js/vendor/jquery-1.10.2.min.js"><\/script>')</script>
<script src="js/plugins.js"></script>
<script src="js/main.js"></script>
<!-- Google Analytics: change UA-XXXXX-X to be your site's ID. -->
<script>
(function(b,o,i,l,e,r){b.GoogleAnalyticsObject=l;b[l]||(b[l]=
function(){(b[l].q=b[l].q||[]).push(arguments)});b[l].l=+new Date;
e=o.createElement(i);r=o.getElementsByTagName(i)[0];
e.src='//www.google-analytics.com/analytics.js';
r.parentNode.insertBefore(e,r)}(window,document,'script','ga'));
ga('create','UA-XXXXX-X');ga('send','pageview');
</script>
</body>
</html>