You are here

multipurpose_corporate_theme.responsive.styles.css in Multipurpose Corporate Profile 7

/*
 * responsive.custom.css is for custom media queries that are not set via the
 * theme settings, such as cascading media queries.
 *
 * By default all the other responsive stylesheets used in Adaptivetheme use a
 * "stacking method", however cascading media queries use a waterfall method so
 * you can leverage the cascade and inheritance for all browsers that support
 * media queries.
 *
 * @SEE http://zomigi.com/blog/essential-considerations-for-crafting-quality-media-queries/#mq-overlap-stack
 *
 * NOTE: this file loads by default, to disable go to your theme settings and
 * look under the "CSS" settings tab.
 */

/*
 * Really small screens and up
 */
/* @media only screen and (min-width: 220px) {} */

/*
 * Smalltouch sizes and up
 */
/* @media only screen and (min-width: 320px) {} */

/*
 * Smalltouch sizes and down
 */
@media only screen and (max-width: 480px) {
  /* 
   * Float Region Blocks - custom media query CSS example:
   * 
   * Float regions blocks is an Extension you can enable in the appearance
   * settings for your theme. This feature allows you to automatically float
   * blocks in regions, you can switch it on and off depending on your
   * requirements. For design purposes you many want to remove the floats for
   * devices where the entire theme is just one column - for example small
   * mobile phones. The following CSS is inside the custom media query:
   *
   *   @media only screen and (max-width: 480px){}
   *
   * This will target devices with a maximum width of 480px - most small phones.
   * In these smaller screen sizes we can remove the float and widths so all
   * blocks stack instead of displaying horizonally. The selector used is an
   * "attribute selector" which will match on any float block class. Use your
   * inspector or Firebug to get the classes from the page output if you need
   * more granular control over block alignment and stacking.
   */
  .region[class*="float-blocks"] .block {
    float: none;
    width: 100%;
  }
}

/*
 * Tablet sizes and up
 */
/* @media only screen and (min-width: 768px) {} */

/*
 * Desktops/laptops and up
 */
/* @media only screen and (min-width: 1025px) {} */


@media only screen and (max-width:320px) {
/*
 *   Important Information about this CSS File
 *
 * - Do not delete or rename this file, if you do not use it leave it blank (delete
 *   everything) and the file will be skipped when you enable Production Mode in
 *   the Global theme settings.
 *
 * - Read the _README file in this directory, it contains useful help and other information.
 */

/* Increase the default font size on small touch devices */
body {
  font-size: 100%;
}

/* =============================================================================
 *   Mobile Menu Toggle
 *   See your theme settings extensions for how to enable the menu toggle.
 *   These are example styles for the menu toggle menu, you can use these in the
 *   relevant responsive stylesheets as required. Modify to suit your design.
 * ========================================================================== */
/* The toggle link */
.at-mt .at-menu-toggle h2 {
  margin-bottom: 5px;
}

.at-mt .at-menu-toggle h2 a {
  background: #eee;
  border: 2px solid #ccc;
  padding: 2px 10px;
}

/* Menu items */
.at-mt .at-menu-toggle ul.menu li a {
  background: #eee;
  border-bottom: 1px solid #fff;
}

}
@media only screen and (min-width:321px) and (max-width:580px) {
/*
 *   Important Information about this CSS File
 *
 * - Do not delete or rename this file, if you do not use it leave it blank (delete
 *   everything) and the file will be skipped when you enable Production Mode in
 *   the Global theme settings.
 *
 * - Read the _README file in this directory, it contains useful help and other information.
 */

/* Increase the body font size on small touch devices */
body {
  font-size: 100%;
}

/* =============================================================================
 *   Mobile Menu Toggle
 *   See your theme settings extensions for how to enable the menu toggle.
 *   These are example styles for the menu toggle menu, you can use these in the
 *   relevant responsive stylesheets as required. Modify to suit your design.
 * ========================================================================== */
/* The toggle link */
.at-mt .at-menu-toggle h2 {
  margin-bottom: 5px;
}

.at-mt .at-menu-toggle h2 a {
  background: #eee;
  border: 2px solid #ccc;
  padding: 2px 10px;
}

/* Menu items */
.at-mt .at-menu-toggle ul.menu li a {
  background: #eee;
  border-bottom: 1px solid #fff;
}

}
@media only screen and (min-width:581px) and (max-width:768px) {
/*
 *   Important Information about this CSS File
 *
 * - Do not delete or rename this file, if you do not use it leave it blank (delete
 *   everything) and the file will be skipped when you enable Production Mode in
 *   the Global theme settings.
 *
 * - Read the _README file in this directory, it contains useful help and other information.
 */

/* Increase the body font size on tablet devices */
body {
  font-size: 93.8%;
}

}
@media only screen and (min-width:769px) and (max-width:1024px) {
/*
 *   Important Information about this CSS File
 *
 * - Do not delete or rename this file, if you do not use it leave it blank (delete
 *   everything) and the file will be skipped when you enable Production Mode in
 *   the Global theme settings.
 *
 * - Read the _README file in this directory, it contains useful help and other information.
 */

/* Increase the body font size on tablet devices */
body {
  font-size: 93.8%;
}

}
@media only screen and (min-width:1025px) {
/*
 *   Important Information about this CSS File
 *
 * - Do not delete or rename this file, if you do not use it leave it blank (delete
 *   everything) and the file will be skipped when you enable Production Mode in
 *   the Global theme settings.
 *
 * - Read the _README file in this directory, it contains useful help and other information.
 */

}

File

node_export_assets/adaptivetheme/multipurpose_corporate_theme_files/multipurpose_corporate_theme.responsive.styles.css
View source
  1. /*
  2. * responsive.custom.css is for custom media queries that are not set via the
  3. * theme settings, such as cascading media queries.
  4. *
  5. * By default all the other responsive stylesheets used in Adaptivetheme use a
  6. * "stacking method", however cascading media queries use a waterfall method so
  7. * you can leverage the cascade and inheritance for all browsers that support
  8. * media queries.
  9. *
  10. * @SEE http://zomigi.com/blog/essential-considerations-for-crafting-quality-media-queries/#mq-overlap-stack
  11. *
  12. * NOTE: this file loads by default, to disable go to your theme settings and
  13. * look under the "CSS" settings tab.
  14. */
  15. /*
  16. * Really small screens and up
  17. */
  18. /* @media only screen and (min-width: 220px) {} */
  19. /*
  20. * Smalltouch sizes and up
  21. */
  22. /* @media only screen and (min-width: 320px) {} */
  23. /*
  24. * Smalltouch sizes and down
  25. */
  26. @media only screen and (max-width: 480px) {
  27. /*
  28. * Float Region Blocks - custom media query CSS example:
  29. *
  30. * Float regions blocks is an Extension you can enable in the appearance
  31. * settings for your theme. This feature allows you to automatically float
  32. * blocks in regions, you can switch it on and off depending on your
  33. * requirements. For design purposes you many want to remove the floats for
  34. * devices where the entire theme is just one column - for example small
  35. * mobile phones. The following CSS is inside the custom media query:
  36. *
  37. * @media only screen and (max-width: 480px){}
  38. *
  39. * This will target devices with a maximum width of 480px - most small phones.
  40. * In these smaller screen sizes we can remove the float and widths so all
  41. * blocks stack instead of displaying horizonally. The selector used is an
  42. * "attribute selector" which will match on any float block class. Use your
  43. * inspector or Firebug to get the classes from the page output if you need
  44. * more granular control over block alignment and stacking.
  45. */
  46. .region[class*="float-blocks"] .block {
  47. float: none;
  48. width: 100%;
  49. }
  50. }
  51. /*
  52. * Tablet sizes and up
  53. */
  54. /* @media only screen and (min-width: 768px) {} */
  55. /*
  56. * Desktops/laptops and up
  57. */
  58. /* @media only screen and (min-width: 1025px) {} */
  59. @media only screen and (max-width:320px) {
  60. /*
  61. * Important Information about this CSS File
  62. *
  63. * - Do not delete or rename this file, if you do not use it leave it blank (delete
  64. * everything) and the file will be skipped when you enable Production Mode in
  65. * the Global theme settings.
  66. *
  67. * - Read the _README file in this directory, it contains useful help and other information.
  68. */
  69. /* Increase the default font size on small touch devices */
  70. body {
  71. font-size: 100%;
  72. }
  73. /* =============================================================================
  74. * Mobile Menu Toggle
  75. * See your theme settings extensions for how to enable the menu toggle.
  76. * These are example styles for the menu toggle menu, you can use these in the
  77. * relevant responsive stylesheets as required. Modify to suit your design.
  78. * ========================================================================== */
  79. /* The toggle link */
  80. .at-mt .at-menu-toggle h2 {
  81. margin-bottom: 5px;
  82. }
  83. .at-mt .at-menu-toggle h2 a {
  84. background: #eee;
  85. border: 2px solid #ccc;
  86. padding: 2px 10px;
  87. }
  88. /* Menu items */
  89. .at-mt .at-menu-toggle ul.menu li a {
  90. background: #eee;
  91. border-bottom: 1px solid #fff;
  92. }
  93. }
  94. @media only screen and (min-width:321px) and (max-width:580px) {
  95. /*
  96. * Important Information about this CSS File
  97. *
  98. * - Do not delete or rename this file, if you do not use it leave it blank (delete
  99. * everything) and the file will be skipped when you enable Production Mode in
  100. * the Global theme settings.
  101. *
  102. * - Read the _README file in this directory, it contains useful help and other information.
  103. */
  104. /* Increase the body font size on small touch devices */
  105. body {
  106. font-size: 100%;
  107. }
  108. /* =============================================================================
  109. * Mobile Menu Toggle
  110. * See your theme settings extensions for how to enable the menu toggle.
  111. * These are example styles for the menu toggle menu, you can use these in the
  112. * relevant responsive stylesheets as required. Modify to suit your design.
  113. * ========================================================================== */
  114. /* The toggle link */
  115. .at-mt .at-menu-toggle h2 {
  116. margin-bottom: 5px;
  117. }
  118. .at-mt .at-menu-toggle h2 a {
  119. background: #eee;
  120. border: 2px solid #ccc;
  121. padding: 2px 10px;
  122. }
  123. /* Menu items */
  124. .at-mt .at-menu-toggle ul.menu li a {
  125. background: #eee;
  126. border-bottom: 1px solid #fff;
  127. }
  128. }
  129. @media only screen and (min-width:581px) and (max-width:768px) {
  130. /*
  131. * Important Information about this CSS File
  132. *
  133. * - Do not delete or rename this file, if you do not use it leave it blank (delete
  134. * everything) and the file will be skipped when you enable Production Mode in
  135. * the Global theme settings.
  136. *
  137. * - Read the _README file in this directory, it contains useful help and other information.
  138. */
  139. /* Increase the body font size on tablet devices */
  140. body {
  141. font-size: 93.8%;
  142. }
  143. }
  144. @media only screen and (min-width:769px) and (max-width:1024px) {
  145. /*
  146. * Important Information about this CSS File
  147. *
  148. * - Do not delete or rename this file, if you do not use it leave it blank (delete
  149. * everything) and the file will be skipped when you enable Production Mode in
  150. * the Global theme settings.
  151. *
  152. * - Read the _README file in this directory, it contains useful help and other information.
  153. */
  154. /* Increase the body font size on tablet devices */
  155. body {
  156. font-size: 93.8%;
  157. }
  158. }
  159. @media only screen and (min-width:1025px) {
  160. /*
  161. * Important Information about this CSS File
  162. *
  163. * - Do not delete or rename this file, if you do not use it leave it blank (delete
  164. * everything) and the file will be skipped when you enable Production Mode in
  165. * the Global theme settings.
  166. *
  167. * - Read the _README file in this directory, it contains useful help and other information.
  168. */
  169. }