/*
 * --- THEME BIGDADDY ---
 * Styles for MASTER MEDIA QUERIES screen styles.
----------------------------------------------------- */

/* conditions for DIMENSIONS (from the higher to the smallest resolution) 
---------------------------------------------------------------------- */

/* ------------------------------------------------------------------- */
/* DESKTOP
---------------------------------------------------------------------- */

/* Layout for DESKTOP version
---------------------------------------------------------------------- */
/*img {max-width: 100%;}*/

@media only screen and (min-width : 1024px) {
  /* Your styles */
}

/* ------------------------------------------------------------------- */
/* TABLETS or NETBOOKS
---------------------------------------------------------------------- */

/* Layout for NETBOOK version
---------------------------------------------------------------------- */
@media (max-width: 1023px) {
  /* Your styles */
}

/* iPad (portrait and landscape)
---------------------------------------------------------------------- */
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) {
  /* Your styles */
}

/* iPad (landscape)
---------------------------------------------------------------------- */
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : landscape) {
  /* Your styles */
}

/* iPad (portrait)
---------------------------------------------------------------------- */
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : portrait) {
  /* Your styles */
}

/* ------------------------------------------------------------------- */
/* MOBILES
---------------------------------------------------------------------- */

/* iPhone (portrait and landscape)
---------------------------------------------------------------------- */
@media only screen and (min-device-width : 320px) and (max-device-width : 480px) {
  /* Your styles */
}

/* iPhone (portrait)
---------------------------------------------------------------------- */
@media only screen and (max-device-width : 320px)  {
  /* Your styles */
}

/* iPhone (landscape)
---------------------------------------------------------------------- */
@media screen and (max-device-width: 480px) {
  /* Your styles */
}

/* Provide higher res assets for iPhone 4
---------------------------------------------------------------------- */
@media only screen and (-webkit-min-device-pixel-ratio: 2) { 
  /* Your styles: images or backgrounds with a higher resolution */
}

/* Specifici iOS styles
---------------------------------------------------------------------- */
/*
html {
  -webkit-text-size-adjust: <value>;
  -webkit-tap-highlight-color: <css-color>;
}
*/

