Skip to content

Commit f17b35b

Browse files
author
sebastian
committed
1 parent 3ec751a commit f17b35b

File tree

4 files changed

+21
-33
lines changed

4 files changed

+21
-33
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
<inputEncoding>UTF-8</inputEncoding>
3737
<outputEncoding>UTF-8</outputEncoding>
3838
<headerHtmlFile>${project.basedir}/src/main/resources/html/header.html</headerHtmlFile>
39-
<copyDirectories>${project.basedir}/src/main/resources/css/</copyDirectories>
39+
<copyDirectories>css</copyDirectories>
4040
<transformRelativeMarkdownLinks>true</transformRelativeMarkdownLinks>
4141
</configuration>
4242
</plugin>

src/main/resources/html/header.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
<head>
44
<title>titleToken</title>
55
<meta charset="utf-8" />
6-
<link rel="stylesheet" href="##SITE_BASE##/spec.css">
6+
<link rel="stylesheet" href="##SITE_BASE##/css/spec.css">
77
</head>

src/main/resources/css/spec.css renamed to src/main/resources/markdown/css/spec.css

Lines changed: 12 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -17,46 +17,21 @@ h1, h2, h3, h4 {
1717
text-decoration-line: none;
1818
}
1919

20-
h1:before {
21-
counter-increment: section;
22-
content: counter(section) " ";
23-
}
24-
2520
h1 {
26-
counter-reset: sub-section;
27-
font-size: 20px;
21+
font-size: 30px;
2822
border-bottom: 1px solid lightgrey;
2923
}
3024

31-
h2:before {
32-
counter-increment: sub-section;
33-
content: counter(section) "." counter(sub-section) " ";
34-
}
35-
3625
h2 {
37-
counter-reset: composite;
38-
font-size: 18px;
39-
}
40-
41-
h3:before {
42-
counter-increment: composite;
43-
content: counter(section) "." counter(sub-section) "."
44-
counter(composite) " ";
26+
font-size: 25px;
4527
}
4628

4729
h3 {
48-
counter-reset: detail;
49-
font-size: 16px;
50-
}
51-
52-
h4:before {
53-
counter-increment: detail;
54-
content: counter(section) "." counter(sub-section) "."
55-
counter(composite) "." counter(detail) " ";
30+
font-size: 20px;
5631
}
5732

5833
h4 {
59-
font-size: 14px;
34+
font-size: 16px;
6035
}
6136

6237
li {
@@ -78,7 +53,13 @@ h6 + p > code:first-of-type {
7853
color: grey;
7954
border-bottom: 1px dotted lightgrey;
8055
text-align: right;
81-
width: 100%;
56+
width: 100%;
8257
position: relative;
8358
top: -2.5em;
84-
}
59+
}
60+
61+
blockquote {
62+
color: darkviolet;
63+
border-left: 1px solid darkviolet;
64+
padding-left: 1em;
65+
}

src/main/resources/markdown/introduction.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ For a list of OFTAutoYummi's stakeholder contacts and their responsibilities ple
4848
The main audience for this software architecture are persons responsible for the design and implementation of the [building blocks](building_blocks.md). They have to base their detailed designs on the requirements stated in this document.
4949

5050
Recommended reading:
51+
5152
* Introduction
5253
* [Context](context.md)
5354
* [Constraints](constraints.md)
@@ -62,11 +63,13 @@ Recommended reading:
6263
While project managers will usually not dive into the technical details of the system architecture, they still need to at least know the general
6364

6465
Recommended reading:
66+
6567
* Introduction
6668
* [Context](context.md)
6769
* [Risks](risks.md)
6870

6971
Chapters that might also be interesting for this role:
72+
7073
* [Constraints](constraints.md)
7174
* [Design Decisions](design_decisions.md)
7275

@@ -75,11 +78,13 @@ Chapters that might also be interesting for this role:
7578
Quality Engineers are responsible for making sure the defined quality standards of the project are adhered to. They do not usually dig into the details of the architectural requirements. More likely they check whether the tracing chain is intact and otherwise focus on the quality goals.
7679

7780
Recommended reading:
81+
7882
* Introduction
7983
* [Quality Scenarios](quality_scenarios.md)
8084
* [Risks](risks.md)
8185

8286
Chapters that might also be interesting for this role:
87+
8388
* [Context](context.md)
8489
* [Building Block View](building_blocks)
8590
* [Risks](risks.md)
@@ -89,6 +94,7 @@ Chapters that might also be interesting for this role:
8994
Testers are all persons testing the system. This role is also very often assumed by [software developers](#software-developers) and [quality engineers](#quality-engineers). E.g. each software developer writing a unit test is a tester at that moment. Testers need to understand how the system works.
9095

9196
Recommended reading:
97+
9298
* Introduction
9399
* [Context](context.md)
94100
* [Constraints](constraints.md)
@@ -102,6 +108,7 @@ Recommended reading:
102108
Operators are responsible for installing, configuring, running and monitoring the system. Especially in the case of a DevOps organization this role is assumed by [software developers](#software-developers).
103109

104110
Recommended reading:
111+
105112
* Introduction
106113
* [Context](context.md)
107114
* [Building Block View](building_blocks)

0 commit comments

Comments
 (0)