1; Please see http://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[stylesheets] 18 19css/basic.less = screen 20css/_imgdetail.css = screen 21css/_media_popup.css = screen 22css/_media_fullscreen.css = screen 23css/_fileuploader.css = screen 24css/_tabs.css = screen 25css/_links.css = screen 26css/_toc.css = screen 27css/_footnotes.css = screen 28css/_search.css = screen 29css/_recent.css = screen 30css/_diff.css = screen 31css/_edit.css = screen 32css/_modal.css = screen 33css/_forms.css = screen 34css/_admin.less = screen 35css/structure.less = screen 36css/design.less = screen 37css/pagetools.less = screen 38css/content.less = screen 39 40css/mobile.less = all 41css/print.css = print 42 43 44; This section is used to configure some placeholder values used in 45; the stylesheets. Changing this file is the simplest method to 46; give your wiki a new look. 47; Placeholders defined here will also be made available as LESS variables 48; (with surrounding underscores removed, and the prefix @ini_ added) 49 50[replacements] 51 52;-------------------------------------------------------------------------- 53;------ guaranteed dokuwiki color placeholders that every plugin can use 54 55; main text and background colors 56__text__ = "#191970" ; @ini_text 57__background__ = "rgba(255,255,255,0.6)" ; @ini_background rgba(255,255,255,0.6) 58; alternative text and background colors 59__text_alt__ = "#999" ; @ini_text_alt 60__background_alt__ = "#eee" ; @ini_background_alt 61; neutral text and background colors 62__text_neu__ = "#666" ; @ini_text_neu 63__background_neu__ = "#ddd" ; @ini_background_neu 64; border color 65__border__ = "#ccc" ; @ini_border 66 67; highlighted text (e.g. search snippets) 68__highlight__ = "#ff9" ; @ini_highlight 69 70;-------------------------------------------------------------------------- 71 72__background_site__ = "#fbfaf9" ; @ini_background_site 73 74; these are used for links 75__link__ = "#2b73b7" ; @ini_link 76__existing__ = "#080" ; @ini_existing 77__missing__ = "#d30" ; @ini_missing 78 79; site and sidebar widths 80__site_width__ = "75em" ; @ini_site_width 81__sidebar_width__ = "16em" ; @ini_sidebar_width 82; cut off points for mobile devices 83__tablet_width__ = "800px" ; @ini_tablet_width 84__phone_width__ = "480px" ; @ini_phone_width 85