generated from EOEPCA/template-svce
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 6263fa7
Showing
15 changed files
with
4,777 additions
and
0 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
@import "asciidoctor.css"; | ||
|
||
/* Centre align figure captions */ | ||
.imageblock.text-center>.title { | ||
text-align: center; | ||
} | ||
|
||
/* Scale font size of CodeRay [source] elements, which seem a bit big */ | ||
pre.CodeRay code { | ||
font-size: 0.9em; | ||
} | ||
|
||
/* Bold font for the numbers in an ordered list */ | ||
div.strong > ol { | ||
font-weight: bold; | ||
} | ||
|
||
/* | ||
* EXAMPLE for custom code-block scaling... | ||
* Use an asciidoc source element like this '[source.src-scale05,python]' and then apply a custom style like below. | ||
* This basically adds the custom CSS class 'src-scale05' to the root of the DOM for the code block, which we can then exploit for styling. | ||
*/ | ||
.src-scale05 pre.CodeRay code { | ||
font-size: 0.5em; | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
@import "asciidoctor.css"; | ||
|
||
/* Centre align figure captions */ | ||
.imageblock.text-center>.title { | ||
text-align: center; | ||
} | ||
|
||
/* Scale font size of CodeRay [source] elements, which seem a bit big */ | ||
pre.CodeRay code { | ||
font-size: 0.9em; | ||
} | ||
|
||
/* Bold font for the numbers in an ordered list */ | ||
div.strong > ol { | ||
font-weight: bold; | ||
} | ||
|
||
/* | ||
* EXAMPLE for custom code-block scaling... | ||
* Use an asciidoc source element like this '[source.src-scale05,python]' and then apply a custom style like below. | ||
* This basically adds the custom CSS class 'src-scale05' to the root of the DOM for the code block, which we can then exploit for styling. | ||
*/ | ||
.src-scale05 pre.CodeRay code { | ||
font-size: 0.5em; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<meta http-equiv="X-UA-Compatible" content="ie=edge" /> | ||
<title>Document</title> | ||
</head> | ||
<body> | ||
<h1>Data Access Service Documentation</h1> | ||
<div> | ||
<ul> | ||
<li><a href="SDD/">Software Design Document</a></li> | ||
<li><a href="ICD/">Interface Control Document</a></li> | ||
</ul> | ||
</div> | ||
</body> | ||
</html> |