-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_export.html
More file actions
104 lines (102 loc) · 2.85 KB
/
test_export.html
File metadata and controls
104 lines (102 loc) · 2.85 KB
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
<!DOCTYPE html>
<html lang='en'>
<head>
<meta charset='UTF-8'>
<title>test</title>
<style>
* { box-sizing: border-box; }
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
line-height: 1.6;
max-width: 900px;
margin: 0 auto;
padding: 2rem;
color: #1a1a1a;
background: #fafafa;
}
h1 {
color: #2563eb;
border-bottom: 3px solid #2563eb;
padding-bottom: 0.5rem;
}
h2 {
color: #374151;
margin-top: 2rem;
}
.story {
background: white;
border-radius: 8px;
padding: 1.5rem;
margin: 1rem 0;
box-shadow: 0 1px 3px rgba(0,0,0,0.1);
border-left: 4px solid #2563eb;
}
.story-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 1rem;
}
.story-id {
font-weight: bold;
color: #2563eb;
}
.story-title {
font-size: 1.1rem;
font-weight: 600;
}
.meta {
display: flex;
gap: 1rem;
font-size: 0.9rem;
color: #6b7280;
}
.badge {
display: inline-block;
padding: 0.2rem 0.6rem;
border-radius: 4px;
font-size: 0.8rem;
font-weight: 500;
}
.status-done { background: #d1fae5; color: #065f46; }
.status-progress { background: #fef3c7; color: #92400e; }
.status-planned { background: #e5e7eb; color: #374151; }
.priority-high { background: #fee2e2; color: #991b1b; }
.priority-medium { background: #fef3c7; color: #92400e; }
.priority-low { background: #dbeafe; color: #1e40af; }
.description { margin: 1rem 0; }
.subtasks {
margin-top: 1rem;
padding-top: 1rem;
border-top: 1px solid #e5e7eb;
}
.subtask {
display: flex;
align-items: center;
gap: 0.5rem;
padding: 0.3rem 0;
}
.subtask-done { text-decoration: line-through; color: #9ca3af; }
.ac-list { list-style: none; padding: 0; }
.ac-item { padding: 0.3rem 0; }
.footer {
margin-top: 3rem;
padding-top: 1rem;
border-top: 1px solid #e5e7eb;
font-size: 0.8rem;
color: #6b7280;
text-align: center;
}
</style>
</head>
<body>
<h1>🚀 test</h1>
<p><strong>Stories:</strong> 0 |
<strong>Total Points:</strong> 0 |
<strong>Completed:</strong> 0</p>
<h2>User Stories</h2>
<div class='footer'>
Generated by spectra on 2026-01-08 01:07
</div>
</body>
</html>