Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. /* Twitter Display Requirement Styles */
  2.  
  3. .tweets .tweet-container {
  4.     overflow: hidden;
  5.     clear: both;
  6.     margin-bottom: 12px;
  7.     border:1px solid #ccc;
  8.     border-radius: 5px;
  9. }
  10. .tweets p {
  11.     margin-bottom: 8px;
  12.     line-height: 1.2;
  13. }
  14. .tweets .tweet-user-avatar {
  15.     display: block;
  16.     width: 32px;
  17.     height: 32px;
  18.     margin: 0 2px 4px 0;
  19.     float: left;
  20. }
  21. .tweets .tweet-user-names {
  22.     display: block;
  23.     float: left;
  24.     line-height: 1;
  25.     margin-bottom: 4px;
  26.     vertical-align: top;
  27.     margin-top: 0px;
  28.     padding-top: 0px;
  29. }
  30. .tweets .tweet-user-names a {
  31.     display: block;
  32.     margin-bottom: 2px;
  33. }
  34.  
  35. .tweets .tweet-user-names .tweet-display-name {
  36.     font-weight: bold;
  37. }
  38.  
  39. .tweets .tweet-user-names .tweet-account-name {
  40.     font-size: 0.7em;
  41. }
  42.  
  43. .tweets .tweet-time {
  44. /*     float: left; */
  45.     display: inline-block;
  46.     font-size: 0.7em;
  47.     padding-left: 2px;
  48.     padding-top: 2px;
  49. }
  50. .tweets .tweet-text {
  51.     clear: both;
  52.     margin-bottom: 8px;
  53.     padding-left: 2px;
  54.     padding-right: 2px;
  55. }
  56. .tweets .twitter-follow-button {
  57.     float: right; /* was left */
  58. }
  59. .tweets .tweet-intents {
  60.     float: right;
  61.     font-size: 0.8em;
  62.     padding-right: 2px;
  63. }
  64. .tweets .tweet-intents a {
  65.     display: inline-block;
  66.     padding-left: 3px;
  67.     border-left: 1px dotted #C8C8C8;
  68.     margin-left: 3px;
  69.     text-decoration: none;
  70. }
  71. .tweets .tweet-intents a:hover,
  72. .tweets .tweet-intents a:active {
  73.     text-decoration: none;
  74. }
  75. .tweets .tweet-intents a.intent-reply {
  76.     margin-left: 0;
  77.     border-left: none;
  78.     padding-left: 0;
  79. }