Skip to content

Instantly share code, notes, and snippets.

@oneblackcrayon
Last active August 29, 2015 14:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save oneblackcrayon/4f7a26fd6b24d5340b9a to your computer and use it in GitHub Desktop.
Save oneblackcrayon/4f7a26fd6b24d5340b9a to your computer and use it in GitHub Desktop.
Work-around for updating styles to a template that is imported into Campaign Monitor.
<multiline label="styles-override">
<style type="text/css">
.class {color: red;}
@media screen and (max-width: 479px) {
[class="class"] {color: blue;}
}
</style>
</multiline>
<p>or</p>
<style type="text/css">
<multiline label="styles-override">
.class {color: red;}
@media screen and (max-width: 479px) {
[class="class"] {color: blue;}
}
</multiline>
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment