Difference between revisions of "Responsive design"
Jump to navigation
Jump to search
old>Admin (Created page with '== Responsive design == === Step 1: Modify your template === In your default wrapper the following code should be added to in the HEAD section of the HTML <meta name="viewp…') |
old>Admin |
||
Line 32: | Line 32: | ||
=== Examples === | === Examples === | ||
[[File:ResponsiveLogin.PNG]] | |||
[[File:ResponsiveList.PNG]] | |||
[[File:ResponsiveForm.PNG]] |
Revision as of 09:46, 4 December 2014
Responsive design
Step 1: Modify your template
In your default wrapper the following code should be added to in the HEAD section of the HTML
<meta name="viewport" content="width=device-width, user-scalable=yes" />
Step 2: Modify your stylesheet
Add the following CSS to your default stylesheet (preferrably the parent stylesheet - ex. base)
@media screen and (min-width: 960px) { body { margin: 20px; } } @media screen and (max-width: 960px) { body { margin: 5px; margin-top: 15px; } .menuItem, .layoutClassic .menuList .menuBlock #menuDoMenuAdvanced { display: none !important; } #menuMainMenu, #menuShowList, #menuCreateItem, #menuLogout { display: inline-block !important; } .tableMasterDescription { display: none; } } @media screen and (max-width: 960px) { .logo { height: 80px; width: auto;} .tableLogin { zoom: 200%; -moz-transform: scale(200%); -moz-transform-origin: 0 0; } .tableList, .tableForm { zoom: 130%; -moz-transform: scale(130%); -moz-transform-origin: 0 0; } } @media screen and (max-width: 480px) { .logo { height: 50px; width: auto;} .tableLogin { zoom: 150%; -moz-transform: scale(150%); -moz-transform-origin: 0 0; } .tableList, .tableForm { zoom: 120%; -moz-transform: scale(120%); -moz-transform-origin: 0 0; } }