Compare commits
10 commits
93e6d14cca
...
faf0448747
| Author | SHA1 | Date | |
|---|---|---|---|
| faf0448747 | |||
| faf0d99db8 | |||
| faf01b4238 | |||
| faf04f00e1 | |||
| faf02d639f | |||
| faf0173f86 | |||
| faf038fa32 | |||
|
|
fa1fb9e38d | ||
|
|
af5c62f2bd | ||
|
|
541675f9a1 |
17 changed files with 77 additions and 13 deletions
7
README.md
Normal file
7
README.md
Normal file
|
|
@ -0,0 +1,7 @@
|
||||||
|
FAFO template for DokuWiki
|
||||||
|
--------------------------
|
||||||
|
This is a modified version of the [sprintdoc](github.com/cosmocode/dokuwiki-template-sprintdoc) template.
|
||||||
|
|
||||||
|
If you install this template manually, make sure it is installed in `lib/tpl/sprintdoc/` – if the folder is called different it will not work!
|
||||||
|
|
||||||
|
Original README: [`README-sprintdoc.txt`](./README-sprintdoc.txt)
|
||||||
|
|
@ -35,7 +35,6 @@
|
||||||
.main-footer {
|
.main-footer {
|
||||||
position: relative;
|
position: relative;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
background-color: @ini_background_site;
|
|
||||||
margin-top: 5px; // for box-shadow of content
|
margin-top: 5px; // for box-shadow of content
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -85,12 +85,13 @@
|
||||||
|
|
||||||
/* + + + wiki title + + + */
|
/* + + + wiki title + + + */
|
||||||
p.title {
|
p.title {
|
||||||
background-color: @ini_background_site;
|
|
||||||
opacity: @header-font-opacity;
|
opacity: @header-font-opacity;
|
||||||
color: @ini_text_webframe;
|
color: @ini_text_webframe;
|
||||||
line-height: @line-height-default;
|
line-height: @line-height-default;
|
||||||
margin-bottom: .5rem;
|
margin-bottom: .5rem;
|
||||||
|
|
||||||
|
font-weight: bold;
|
||||||
|
|
||||||
@media @screen_min-md {
|
@media @screen_min-md {
|
||||||
font-size: @font-size-big;
|
font-size: @font-size-big;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -5,8 +5,8 @@
|
||||||
/* + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + */
|
/* + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + */
|
||||||
/* global vars */
|
/* global vars */
|
||||||
/* + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + */
|
/* + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + */
|
||||||
@font_family_screen: arial, sans-serif;
|
@font_family_screen: "Roboto Slab", arial, sans-serif;
|
||||||
@font_family_print: "Times New Roman", serif;
|
@font_family_print: "Roboto Slab", arial, sans-serif;
|
||||||
|
|
||||||
@nav_direct_background: @ini_background;
|
@nav_direct_background: @ini_background;
|
||||||
@nav_direct_color: @ini_existing;
|
@nav_direct_color: @ini_existing;
|
||||||
|
|
@ -36,7 +36,7 @@
|
||||||
@box-shadow-bottom: 0 .1em .5em rgba(153,153,153,.5); // qc-wrapper (breadcrumb), struct inline-editor
|
@box-shadow-bottom: 0 .1em .5em rgba(153,153,153,.5); // qc-wrapper (breadcrumb), struct inline-editor
|
||||||
|
|
||||||
/* + + + for programmers customizing + + + */
|
/* + + + for programmers customizing + + + */
|
||||||
@fix_border-radius: 3px; // inputs, editbox (textarea), buttons, content, code, quicksearch, msg
|
@fix_border-radius: 0; // inputs, editbox (textarea), buttons, content, code, quicksearch, msg
|
||||||
|
|
||||||
@toggle-showsidebar_width: 3.47rem; // shown sidebar after toggle
|
@toggle-showsidebar_width: 3.47rem; // shown sidebar after toggle
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,9 @@
|
||||||
|
|
||||||
|
|
||||||
html, body {
|
html, body {
|
||||||
background-color: @ini_background_site;
|
background-image: url("images/fafo-background.png");
|
||||||
|
background-repeat: no-repeat;
|
||||||
|
background-color: #d9d9d9;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* highlight selected tool */
|
/* highlight selected tool */
|
||||||
|
|
@ -498,15 +500,15 @@ pre,
|
||||||
code,
|
code,
|
||||||
samp,
|
samp,
|
||||||
kbd {
|
kbd {
|
||||||
font-family: Consolas, "Andale Mono WT", "Andale Mono", "Bitstream Vera Sans Mono", "Nimbus Mono L", Monaco, "Courier New", monospace;
|
font-family: "Courier Prime", "Courier New", Consolas, "Andale Mono WT", "Andale Mono", "Bitstream Vera Sans Mono", "Nimbus Mono L", Monaco, monospace;
|
||||||
/* same font stack should be used for ".dokuwiki table.diff td" in _diff.css */
|
/* same font stack should be used for ".dokuwiki table.diff td" in _diff.css */
|
||||||
font-size: @font-size-default;
|
font-size: @font-size-default;
|
||||||
direction: ltr;
|
direction: ltr;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
background-color: @code-background;
|
background-color: @code-background;
|
||||||
color: @noopentasks-color;
|
color: @noopentasks-color;
|
||||||
box-shadow: inset 0 0 .3em @noopentasks-border;
|
box-shadow: none;
|
||||||
border-radius: @fix_border-radius;
|
border-radius: 0;
|
||||||
padding-left: @small-spacing;
|
padding-left: @small-spacing;
|
||||||
padding-right: @small-spacing;
|
padding-right: @small-spacing;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -25,6 +25,60 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* roboto-slab-regular - cyrillic_cyrillic-ext_greek_greek-ext_latin_latin-ext */
|
||||||
|
@font-face {
|
||||||
|
font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
|
||||||
|
font-family: 'Roboto Slab';
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
src: url('fonts/roboto-slab-v36-cyrillic_cyrillic-ext_greek_greek-ext_latin_latin-ext-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
|
||||||
|
}
|
||||||
|
|
||||||
|
/* roboto-slab-700 - cyrillic_cyrillic-ext_greek_greek-ext_latin_latin-ext */
|
||||||
|
@font-face {
|
||||||
|
font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
|
||||||
|
font-family: 'Roboto Slab';
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 700;
|
||||||
|
src: url('fonts/roboto-slab-v36-cyrillic_cyrillic-ext_greek_greek-ext_latin_latin-ext-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
|
||||||
|
}
|
||||||
|
|
||||||
|
/* courier-prime-regular - latin */
|
||||||
|
@font-face {
|
||||||
|
font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
|
||||||
|
font-family: 'Courier Prime';
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
src: url('fonts/courier-prime-v11-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
|
||||||
|
}
|
||||||
|
|
||||||
|
/* courier-prime-italic - latin */
|
||||||
|
@font-face {
|
||||||
|
font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
|
||||||
|
font-family: 'Courier Prime';
|
||||||
|
font-style: italic;
|
||||||
|
font-weight: 400;
|
||||||
|
src: url('fonts/courier-prime-v11-latin-italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
|
||||||
|
}
|
||||||
|
|
||||||
|
/* courier-prime-700 - latin */
|
||||||
|
@font-face {
|
||||||
|
font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
|
||||||
|
font-family: 'Courier Prime';
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 700;
|
||||||
|
src: url('fonts/courier-prime-v11-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
|
||||||
|
}
|
||||||
|
|
||||||
|
/* courier-prime-700italic - latin */
|
||||||
|
@font-face {
|
||||||
|
font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
|
||||||
|
font-family: 'Courier Prime';
|
||||||
|
font-style: italic;
|
||||||
|
font-weight: 700;
|
||||||
|
src: url('fonts/courier-prime-v11-latin-700italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
|
||||||
|
}
|
||||||
|
|
||||||
.fontello() {
|
.fontello() {
|
||||||
&::before {
|
&::before {
|
||||||
font-family: "fontello";
|
font-family: "fontello";
|
||||||
|
|
|
||||||
|
|
@ -9,6 +9,7 @@
|
||||||
@media screen {
|
@media screen {
|
||||||
#plugin__approve {
|
#plugin__approve {
|
||||||
display: none; // initial
|
display: none; // initial
|
||||||
|
position: relative;
|
||||||
padding: 2rem 1rem;
|
padding: 2rem 1rem;
|
||||||
clear: both;
|
clear: both;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
BIN
fonts/courier-prime-v11-latin-700.woff2
Normal file
BIN
fonts/courier-prime-v11-latin-700.woff2
Normal file
Binary file not shown.
BIN
fonts/courier-prime-v11-latin-700italic.woff2
Normal file
BIN
fonts/courier-prime-v11-latin-700italic.woff2
Normal file
Binary file not shown.
BIN
fonts/courier-prime-v11-latin-italic.woff2
Normal file
BIN
fonts/courier-prime-v11-latin-italic.woff2
Normal file
Binary file not shown.
BIN
fonts/courier-prime-v11-latin-regular.woff2
Normal file
BIN
fonts/courier-prime-v11-latin-regular.woff2
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
images/fafo-background.png
Normal file
BIN
images/fafo-background.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 1.7 MiB |
|
|
@ -171,9 +171,9 @@ __highlight_text__ = "#252525" ; @ini_highlight_text
|
||||||
|
|
||||||
|
|
||||||
; these are used for links
|
; these are used for links
|
||||||
__existing__ = "#286DA8" ; @ini_existing
|
__existing__ = "#0faf00" ; @ini_existing
|
||||||
__missing__ = "#CD5360" ; @ini_missing
|
__missing__ = "#CD5360" ; @ini_missing
|
||||||
__link__ = "#286DA8" ; @ini_link
|
__link__ = "#0faf00" ; @ini_link
|
||||||
|
|
||||||
|
|
||||||
; buttons: submit, links styled like buttons, togglebuttons
|
; buttons: submit, links styled like buttons, togglebuttons
|
||||||
|
|
@ -188,7 +188,7 @@ __link_alt__ = "#286DA8" ; @ini_link_alt
|
||||||
; border color
|
; border color
|
||||||
__border__ = "#BBB" ; @ini_border (guaranteed for every plugin)
|
__border__ = "#BBB" ; @ini_border (guaranteed for every plugin)
|
||||||
|
|
||||||
__default_border_radius__ = "3px" ; @ini_default_border_radius
|
__default_border_radius__ = "0" ; @ini_default_border_radius
|
||||||
|
|
||||||
|
|
||||||
; + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
|
; + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
base sprintdoc
|
base sprintdoc
|
||||||
author Jana Deutschlaender
|
author Jana Deutschlaender
|
||||||
email dokuwiki@cosmocode.de
|
email dokuwiki@cosmocode.de
|
||||||
date 2025-09-23
|
date 2026-03-03
|
||||||
name sprintDoc Template
|
name sprintDoc Template
|
||||||
desc modern, responsive template that integrates multiple plugins
|
desc modern, responsive template that integrates multiple plugins
|
||||||
url https://www.dokuwiki.org/template:sprintdoc
|
url https://www.dokuwiki.org/template:sprintdoc
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue