/*  on local host as new  
https://css-tricks.com/snippets/css/media-queries-for-standard-devices/
*/
  

/* anything with width less than 768px */
@media only screen
and (max-width : 768px) {
   /*  
    (1) code to make menu collapse on screen wider that 768
    https://stackoverflow.com/questions/19827605/change-bootstrap-navbar-collapse-breakpoint-without-using-less
	
	(2) code to make menu stay un-collapsed at screen narrower that 768
    https://stackoverflow.com/questions/42724884/bootstrap-navbar-collapse-point-768px/42725215#42725215
   ====================================================================
 

  .navbar-header {
      float: none;
  }
  .navbar-left,.navbar-right {
      float: none !important;
  }
  .navbar-toggle {
      display: block;
  }
  .navbar-collapse {
      border-top: 1px solid transparent;
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
  }
  .navbar-fixed-top {
      top: 0;
      border-width: 0 0 1px;
  }
  .navbar-collapse.collapse {
      display: none!important;
  }
  .navbar-nav {
      float: none!important;
      margin-top: 7.5px;
  }
  .navbar-nav>li {
      float: none;
  }
  .navbar-nav>li>a {
      padding-top: 10px;
      padding-bottom: 10px;
  }
  .collapse.in{
      display:block !important;
  }
  */

/* ========================================================    */
.fontable {
        /* talking to the menu text  */
	    font-size: 18px;
		/*font-weight: bold;*/
		font-family: Verdana, Arial, sans-serif;
		/*font-family: "Times New Roman";*/
		color: #000000;
	}
.content {
        /* talkng to content  */
	    font-size: 18px;
		font-family: Verdana, Arial, sans-serif;
		color: #000000;
	}
.trailer {
	    font-size: 12px;
		font-family: Verdana, Arial, sans-serif;
		color: #000000;
        background-color: #eeeeee;
	    padding-left:10px; 	 
		padding-right:10px; 
		height: 80px; 
}	
.namebar {
        /* talkng to gabriel's name  */
	    font-size: 24px;
		font-weight: bold;
		font-family: Verdana, Arial, sans-serif;
		color: #ffffff;
	}	
.headertext {
        /* talkng to content text  */
	    font-size: 24px;
		font-weight: bold;
		font-family: Verdana, Arial, sans-serif;
		color: #ffffff;
	}
.contact {
        padding-left: 20px;
		padding-right: 20px;
}		
.xhide {
   display: none;
}
.xhide2 { 
      display: block;
}	
}
 

 
/* anything with width 768px or greater */
@media only screen
and (min-width : 768px) {
.fontable {
        /* talking to the menu text  */
	    font-size: 22px;
		/*font-weight: bold;*/
		font-family: Verdana, Arial, sans-serif;
		/*font-family: "Times New Roman";*/
		color: #ffffff;
	}
.content {
        /* talkng to content  */
	    font-size: 20px;
		font-family: Verdana, Arial, sans-serif;
		color: #000000;
	}
.trailer {
	    font-size: 16px;
		font-family: Verdana, Arial, sans-serif;
		color: #000000;
        background-color: #eeeeee;
	    padding-left:10px; 	 
		padding-right:10px; 
		height: 100px; 
}
.namebar {
        /* talkng to gabriel's name  */
	    font-size: 26px;
		font-weight: bold;
		font-family: Verdana, Arial, sans-serif;
		color: #ffffff;
	}	
.headertext {
        /* talkng to content text  */
	    font-size: 26px;
		font-weight: bold;
		font-family: Verdana, Arial, sans-serif;
		color: #ffffff;
	}
.contact {
        padding-left: 100px;
		padding-right: 100px;
}	
.xhide {
   display: block;
}
.xhide2 { 
      display: none;
}	
}
 
 






