/*
Theme Name: Circe
Theme URI: Your Theme's URI
Description: simple them for the Circe website, which reproduce the design of the circe site
Version: 1.0
Author: François Crouzet
Author URI: 
*/


* {
    /*break long line without space*/
    word-wrap:break-word;
}
img {
    /*auto zoom out image when width screen is low*/
    max-width: 100%;
    height: auto;
}
.logo {
    /*reset the auto zoom out set on img*/
    max-width: none;
}


.navbar {
  /*put our navbar above the WP navbar (it was below when in mobile mode, when scrolling (the wp bar is not fixed))*/
  z-index: 100000;
}
#wpadminbar {
  /* let place for the circe nav bar */
  margin-top: 51px;
}


@media(max-width:782px){ 
  /* Best way to deal with the wordpress admin bar when wordpress try to make it not sticky */
  #wpadminbar {
   display: none;
  }
  /*Note!!! Our html has this code to bypass wordpress' way of making room for its bar:
  <style type="text/css" media="screen">
      @media screen and ( max-width: 782px ) {
          html { margin-top: 0px !important; }
          * html body { margin-top: 0px !important; }
      }
  </style>*/
}