-
Notifications
You must be signed in to change notification settings - Fork 0
/
report_sec.html
113 lines (77 loc) · 1.99 KB
/
report_sec.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
<!DOCTYPE html>
<html>
<head>
<!-- Charset -->
<meta charset="utf-8">
<!-- Meta Information -->
<title>DONE.it</title>
<meta name="author" content="Mjolnir LLC" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
<!-- !Meta Information -->
<!-- Fonts -->
<link href="https://fonts.googleapis.com/css?family=Lora:700|Rubik&subset=cyrillic" rel="stylesheet">
<!-- !Fonts -->
<!-- Stylesheets -->
<link rel="stylesheet" href="/dist/css/style.css">
<!-- !Stylesheets -->
<script type='text/javascript' src="/js/jquery.min.js"></script>
<!--<script type='text/javascript' src='/js/knockout-3.4.0.js'></script>-->
<script src="/js/d3.v4.min.js"></script>
<script src="/js/report_sec.js"></script>
<style>
body {
font-size: 14px;
line-height: 20px;
}
body * {
box-sizing: border-box;
}
.task-widget {
outline: 1px solid rgba(0, 0, 0, .1);
margin: 50px 40px;
min-height: 800px;
padding: 40px;
}
.task-report__project {
margin-bottom: 40px;
}
.task-report__projectName {
font-size: 120%;
margin-bottom: 20px;
}
.task-report__task {
margin-bottom: 20px;
}
.task-report__task:last-child {
margin-bottom: 0;
}
.task-report__day {
margin-bottom: 20px;
padding: 40px 40px;
border: 1px solid rgba(220, 220, 220, 1);
border-radius: 4px;
}
.task-report__time {
margin-bottom: 5px;
}
.task-report__date {
font-size: 120%;
font-weight: 400;
margin-bottom: 20px;
color: rgba(20, 20, 140, 1);
}
.task-report__description {
font-size: 90%;
opacity: .75;
}
</style>
</head>
<body>
<div class="done-border">
<article class="task-widget _text">
</article>
<article class="task-widget _projects">
</article>
</div>
</body>
</html>