mirror of
https://github.com/stronk-dev/RandomChad.git
synced 2025-07-05 02:35:08 +02:00
25 lines
593 B
CSS
25 lines
593 B
CSS
/* Outlook.css */
|
|
/* Contents of this file must be placed between <style> tags with conditional comment in <head> of your newsletter in production */
|
|
|
|
body {
|
|
/* Reset font styling. Useful when we links custom fonts to our newsletter */
|
|
font-family: Helvetica, Arial, sans-serif;
|
|
}
|
|
a {
|
|
/* Reset default links styling */
|
|
color: #2837b8;
|
|
text-decoration: underline;
|
|
}
|
|
h1, h2, h3, h4, h5, h6 {
|
|
/* Reset default headings margin */
|
|
margin: .5em 0;
|
|
}
|
|
img {
|
|
/* Scaled images fix */
|
|
-ms-interpolation-mode: bicubic;
|
|
}
|
|
table {
|
|
/* Null tables spaces */
|
|
border-collapse: collapse;
|
|
}
|