Sha256: 76b97c13b294b9f9861179ee8190e467c0537c6797929eb8854f73c6a2f2f333

Contents?: true

Size: 1.21 KB

Versions: 14

Compression:

Stored size: 1.21 KB

Contents

/* Smooth out any changes made from media queries */
* {
  transition: margin-left .3s, margin-right .3s;
}

/* Large and below,         * remove the extra space around <main> */
/*                          * disabled the fixed nav */
@media screen and (max-width:1279px) {
  body {
    margin-bottom: 2em;      /* space for footer only */
  }

  main, #notice, #alert {
    margin: 0;
    transition: margin 0s;
  }

  #main {
    border-width: 0 !important;
    box-shadow: none;
  }

  nav {
    position: relative;
    top:0;
    transition: margin 0s;
  }

  html {
    background-image: none;
  }
}


/* Pure Medium and below - show a menu */
@media screen and (max-width:1023px) {

  /* Nav with 1 or 0 items in ul.right */
  nav #nav ul.right {
    position: relative;
    top: 0;
    right: 0;
    display: inline-block;
  }

  /* Nav with 2 or more menu items has_hamburger added via javascript */
  nav #nav ul.has_hamburger {
    position: relative;
    background-color: #b40000;
    top: 0;
    right: 0;
    display: none;
    clear: both;  /* Make sure to drop the menu down below the nav even if it would otherwise fit. */
  }
  nav #nav ul.right {
    float: right;
  }

  #nav #hamburger {
    display: block;
  }

}

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
dfm_web-5.0.4 app/assets/stylesheets/dfm_web/layout_media.css
dfm_web-5.0.3 app/assets/stylesheets/dfm_web/layout_media.css
dfm_web-5.0.2 app/assets/stylesheets/dfm_web/layout_media.css
dfm_web-5.0.1 app/assets/stylesheets/dfm_web/layout_media.css
dfm_web-5.0.0 app/assets/stylesheets/dfm_web/layout_media.css
dfm_web-4.1.3 app/assets/stylesheets/dfm_web/layout_media.css
dfm_web-4.1.2 app/assets/stylesheets/dfm_web/layout_media.css
dfm_web-4.1.1 app/assets/stylesheets/dfm_web/layout_media.css
dfm_web-4.1.0 app/assets/stylesheets/dfm_web/layout_media.css
dfm_web-4.0.7 app/assets/stylesheets/dfm_web/layout_media.css
dfm_web-4.0.6 app/assets/stylesheets/dfm_web/layout_media.css
dfm_web-4.0.5 app/assets/stylesheets/dfm_web/layout_media.css
dfm_web-4.0.4 app/assets/stylesheets/dfm_web/layout_media.css
dfm_web-4.0.3 app/assets/stylesheets/dfm_web/layout_media.css