-
Notifications
You must be signed in to change notification settings - Fork 0
/
list.html
52 lines (49 loc) · 1.87 KB
/
list.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no, minimal-ui">
<link href="src/css/reset.css" rel="stylesheet" type="text/css">
<link href="src/css/common.css" rel="stylesheet" type="text/css">
<link href="src/css/list.css" rel="stylesheet" type="text/css">
<link href="src/css/fontsstyle.css" rel="stylesheet" type="text/css">
<title>收支记录</title>
</head>
<body>
<div class="header">
<a href="#list"><span class="icon-list"></span></a>收支明细
<a href="#share"><span class="icon-share2"></span></a>
</div>
<div id="main" class="main">
<div class="time-line">
<a href="javascript:void(0);" class="direction-left"> < </a>
<a href="javascript:void(0);" class="direction-right"> > </a>
<span class="time">2015年3月</span>
</div>
<div class="detail">
<div class="part">
收入:<span class="value">1000</span>元
</div>
<div class="part">
支出:<span class="value">500</span>元
</div>
<a href="detail.html" class="icon-pie-chart"></a>
</div>
<div class="list-header">
<span>项目</span>
<span>金额</span>
</div>
<div class="title">
<dt><a class="open" href="javascript:void(0);"><span>2015年7月3日</span></a></dt>
<dd><span>餐饮</span><span class="red">-30</span></dd>
<dd><span>餐饮</span><span class="red">-100</span></dd>
</div>
<div class="title">
<dt><a class="open" href="javascript:void(0);"><span>2015年7月3日</span></a></dt>
<dd><span>餐饮</span><span class="green">30</span></dd>
<dd><span>餐饮</span><span class="green">100</span></dd>
</div>
</div>
<a href="edit.html" class="edit-btn">记一笔</a>
</body>
</html>