1; Please see http://www.php.net/manual/en/function.parse-ini-file.php
2; for limitations of the ini format used here
3
4; To extend this file or make changes to it, it is recommended to create
5; a local conf/tpl/<template-folder-name>/style.ini file to prevent losing
6; any changes after an upgrade.
7; Please don't forget to copy the section your changes should be under
8; (i.e. [stylesheets] or [replacements]) into that file as well.
9
10; Define the stylesheets your template uses here. The second value
11; defines for which output media the style should be loaded. Currently
12; print, screen and all are supported.
13; You can reference CSS and LESS files here. Files referenced here will
14; be checked for updates when considering a cache rebuild while files
15; included through LESS' @import statements are not
16
17; Benjamin Template attempts to inherit as much as possible from
18; Starter and the built-in Dokuwiki CSS, and only replace what's
19; needed for a responsive design.
20
21[stylesheets]
22
23css/basic.css                         = screen
24../dokuwiki/css/_imgdetail.css        = screen
25../dokuwiki/css/_media_popup.css      = screen
26../dokuwiki/css/_media_fullscreen.css = screen
27../dokuwiki/css/_fileuploader.css     = screen
28../dokuwiki/css/_tabs.css             = screen
29../dokuwiki/css/_links.css            = screen
30../dokuwiki/css/_toc.css              = screen
31../dokuwiki/css/_footnotes.css        = screen
32../dokuwiki/css/_search.css           = screen
33../dokuwiki/css/_recent.css           = screen
34../dokuwiki/css/_diff.css             = screen
35../dokuwiki/css/_edit.css             = screen
36../dokuwiki/css/_modal.css            = screen
37../dokuwiki/css/_forms.css            = screen
38../dokuwiki/css/_admin.css            = screen
39css/structure.css                     = screen
40css/design.css                        = screen
41css/content.css                       = screen
42css/includes.css                      = screen
43css/mobile.css                        = all
44css/print.css                         = print
45user/css/structure.css                = screen
46user/css/design.css                   = screen
47user/css/content.css                  = screen
48user/css/includes.css                 = screen
49user/css/mobile.css		      = all
50user/css/print.css                    = print
51
52
53; This section is used to configure some placeholder values used in
54; the stylesheets. Changing this file is the simplest method to
55; give your wiki a new look.
56; Placeholders defined here will also be made available as LESS variables
57; (with surrounding underscores removed, and the prefix @ini_ added)
58
59[replacements]
60
61;--------------------------------------------------------------------------
62;------ guaranteed dokuwiki color placeholders that every plugin can use
63
64; main text and background colors
65__text__           = "#333"                 ; @ini_text
66__background__     = "#fff"                 ; @ini_background
67; alternative text and background colors
68__text_alt__       = "#999"                 ; @ini_text_alt
69__background_alt__ = "#eee"                 ; @ini_background_alt
70; neutral text and background colors
71__text_neu__       = "#666"                 ; @ini_text_neu
72__background_neu__ = "#ddd"                 ; @ini_background_neu
73; border color
74__border__         = "#ccc"                 ; @ini_border
75
76; highlighted text (e.g. search snippets)
77__highlight__      = "lightyellow"          ; @ini_highlight
78
79;--------------------------------------------------------------------------
80
81; these are used for links
82__existing__       = "#030"                 ; @ini_existing
83__missing__        = "#300"                 ; @ini_missing
84
85; widths
86__site_width__     = "100%"                 ; @ini_site_width
87__sidebar_width__  = "16em"                 ; @ini_sidebar_width
88__med_page_width__ = "50em"
89__max_page_width__ = "84em"