Skip to content
Snippets Groups Projects
Commit ac628d80 authored by Anika Henke's avatar Anika Henke
Browse files

added cut off points for mobile devices as parameters to style.ini

parent 8f8cccb4
No related branches found
No related tags found
No related merge requests found
......@@ -11,9 +11,9 @@
z-index: 0;
}
/* up to 979px screen widths
/* for screen widths in the tablet range
********************************************************************/
@media only screen and (max-width: 979px) {
@media only screen and (max-width: __tablet_width__) {
#screen__mode {
z-index: 1; /* for detecting media queries in JavaScript (see script.js) */
......@@ -113,9 +113,9 @@
} /* /@media */
/* up to 480px screen widths
/* for screen widths in the smartphone range
********************************************************************/
@media only screen and (max-width: 480px) {
@media only screen and (max-width: __phone_width__) {
#screen__mode {
z-index: 2; /* for detecting media queries in JavaScript (see script.js) */
......
......@@ -74,3 +74,6 @@ __missing__ = "#d30"
; site and sidebar widths
__site_width__ = "75em"
__sidebar_width__ = "16em"
; cut off points for mobile devices
__tablet_width__ = "979px"
__phone_width__ = "480px"
base dokuwiki
author Anika Henke
email anika@selfthinker.org
date 2012-10-12
date 2012-10-26
name DokuWiki Template
desc DokuWiki's default template since 2012
url http://www.dokuwiki.org/template:dokuwiki
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment