Skip to content

Instantly share code, notes, and snippets.

@peterwilsoncc
Last active December 16, 2015 07:49
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 peterwilsoncc/5401699 to your computer and use it in GitHub Desktop.
Save peterwilsoncc/5401699 to your computer and use it in GitHub Desktop.
Sample CSS for the Rapid Twitter and ADN Widgets for WordPress
/* refer to: http://wordpress.org/extend/plugins/rapid-adn-widget/ */
.adnpost {
margin-bottom: 1em;
}
.adnpost__datestamp {
display:block;
/* maybe */ text-align:right; /* too */
}
/* possibly even */
.adnpost__datestamp::before {
content: '- ';
display: inline;
}
/* refer to: http://wordpress.org/extend/plugins/rapid-twitter-widget/ */
.tweet {
margin-bottom: 1em;
}
.tweet__datestamp {
display:block;
/* maybe */ text-align:right; /* too */
}
/* possibly even */
.tweet__datestamp::before {
content: '- ';
display: inline;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment