Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
subugoe
ahiqar
ahiqar-tido
Commits
7a74f47c
Commit
7a74f47c
authored
Oct 09, 2020
by
Mathias Goebel
Browse files
setup text styling
parent
c4711fec
Changes
4
Hide whitespace changes
Inline
Side-by-side
.gitlab-ci.yml
View file @
7a74f47c
...
...
@@ -11,6 +11,7 @@ build:
GIT_SUBMODULE_STRATEGY
:
normal
script
:
-
cp --force index.html Qviewer/src/index.template.html
-
cp --force ahikar.css Qviewer/src/statics/
-
cd Qviewer
-
npm install -g @quasar/cli
-
npm install
...
...
README.md
View file @
7a74f47c
...
...
@@ -2,6 +2,18 @@
The (static) frontend for the Ahiqar project:
<https://ahikar.sub.uni.goettingen.de>
This repository mainly serves as a project specific customization of the EMo QViewer.
This repository mainly serves as a project specific customization of the EMo QViewer.
QViewer is integrated as git submodule.
It is integrated into the QViewer during the build of the backend, cf.
<https://gitlab.gwdg.de/subugoe/ahiqar/backend#get-the-frontend>
.
## Text Styling
To add a specific styling of the text in accordance to the projects requirements a
specific stylesheet can be placed here as
`ahikar.css`
. The file is going to be
included in the build of the QViewer application. For local development copy the
two files like shown below.
```
cp --force index.html Qviewer/src/index.template.html
cp --force *.css Qviewer/src/statics/
```
You do not have to track the copied files in the version control system.
\ No newline at end of file
ahikar.css
View file @
7a74f47c
body
{
background-color
:
steelblue
;
background-image
:
linear-gradient
(
to
left
,
#f50707
,
#f56e00
,
#f7df00
,
#66f507
,
#0052b0
,
#520f41
,
#ff0856
);
}
\ No newline at end of file
index.html
View file @
7a74f47c
...
...
@@ -14,6 +14,7 @@
<link
rel=
"icon"
type=
"image/png"
sizes=
"32x32"
href=
"statics/icons/favicon-32x32.png"
>
<link
rel=
"icon"
type=
"image/png"
sizes=
"96x96"
href=
"statics/icons/favicon-96x96.png"
>
<link
rel=
"icon"
type=
"image/ico"
href=
"statics/icons/favicon.ico"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"statics/ahikar.css"
</
head
>
<body>
<noscript>
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment