Last active
March 3, 2016 20:33
-
-
Save web20opensource/d7dc05d0d73152fedf8b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Client-specific Styles */ | |
#outlook a {padding:0;} /* Force Outlook to provide a "view in browser" message */ | |
.ReadMsgBody {width:100%;} .ExternalClass {width:100%;} /* Force Hotmail to display emails at full width */ | |
body{width:100% !important; max-width: 640px !important; -webkit-text-size-adjust:100%; -ms-text-size-adjust:100%; -webkit-font-smoothing: antialiased; margin: 0 auto; padding:0; background-color: #DFDDDB;} | |
/* Prevent Webkit and Windows Mobile platforms from changing default font sizes, while not breaking desktop design. */ | |
#backgroundTable {margin:0; padding:0; width:100% !important; line-height: 100% !important;} | |
img {outline:none; text-decoration:none;border:none; -ms-interpolation-mode: bicubic;} | |
a img {border:none;} | |
p {margin: 0px 0px !important;} | |
table td {border-collapse: collapse; padding:0} | |
table { border-collapse:collapse; mso-table-lspace:0pt; mso-table-rspace:0pt; } | |
/*STYLES*/ | |
/*IPAD STYLES*/ | |
@media only screen and (max-width: 640px) { | |
} | |
/*IPHONE STYLES*/ | |
@media only screen and (max-width: 480px) { | |
} | |
table[class="pickMyTable"]{ | |
font-size:500%; | |
font-weight:bold; | |
} | |
.pickMyTable{ | |
font-size:500%; | |
font-weight:bold; | |
} | |
.vertical-container { | |
height: 300px; | |
display: -webkit-flex; | |
display: flex; | |
-webkit-align-items: center; | |
align-items: center; | |
-webkit-justify-content: center; | |
justify-content: center; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment