/*  * Amazium V1.3 * Copyright 2012, Mike Ballan * www.amazium.co.uk */ /***** Screen 960px *****/ .top { margin:0 auto; margin-top:30px; }	 .base { margin:0 auto; margin-bottom:40px; }	 span.example { margin-bottom:5px; padding:5px 0 5px 0; background-color:#eee; text-align:center; width:100%; display:block; } /***** Screen Bigger than 960px *****/ @media only screen and (min-width:1200px) { .homeBlock p { height:50px; } .contactDetails { font-size:14px; } } /***** Tablet (Smaller than 959px) *****/ @media only screen and (min-width: 768px) and (max-width: 959px) { .homeBlock p { height:70px; } .contactDetails { font-size:11px; } } /***** Phone (portrait 300px) *****/ @media only screen and (max-width: 767px) { .textOver { display:none; } .socialIcons { text-align:center; } #racb { float:none; padding:0; } .contactDetails { text-align:center; line-height:20px; } .readMore { padding:15px 0; width:100%; text-indent:10px; } .hiddenItems { display:none; } #racb input { width:100% !important; margin-right:0 !important; } #racb input[type=submit] { margin-top:10px; } } /***** Phone (landscape 420px) *****/ @media only screen and (min-width: 480px) and (max-width: 767px) { .textOver { display:block; } } /***** Retina *****/ @media only screen and (-webkit-min-device-pixel-ratio:1.5) { .example { margin:0; padding:0; } } 