You are here

twitter.css in Twitter 7.6

Same filename and directory in other branches
  1. 7.5 twitter.css
/**
 * Styles to render a tweet as it is shown at Twitter.com.
 *
 * Thanks @makangus.
 */
div.view-tweets ul{
  list-style-type: none;
  padding: 0px;
}

.twitter-status{
  background: #ffffff;
  color: #333333;
  padding: 10px 10px 0;
  margin-bottom: 2px;
  font-size: 1.077em;
  line-height: 1.42857142857143em;
}

.twitter-status .timestamp{
  float: right;
  color: #999999;
  font-size: 0.85714285714286em;
}

.twitter-status .name-handle{
  margin-left: 60px;
}

.twitter-status .text{
  margin-left: 60px;
}

.twitter-status .name-handle .name, .twitter-status .name-handle .handle{
  display: inline;
}

.twitter-status .name-handle .name a{
  font-weight: bold;
  margin-right: 5px;
  color: #333333;
}

.twitter-status .name-handle .handle a{
  color: #999999;
  font-size: 0.85714285714286em;
}

.twitter-status .avatar{
  float: left;
}

.twitter-status .avatar img{
  border-radius: 3px;
}

.twitter-status a {
  color: #30a9ff;
}

.twitter-status a:hover {
  text-decoration: underline;
}

.twitter-status .actions{
  text-align: right;
  font-size: 0.85714285714286em;
  padding: 0;
  margin: 0;
  visibility: hidden;
}

.twitter-status:hover .actions{
  visibility: visible;
}

.twitter-status .actions li{
  display: inline-block;
  list-style: none;
  padding: 0;
  margin: 0;
}

.twitter-status .actions a{
  display: inline-block;
  line-height: 16px;
  margin-left: 10px;
  vertical-align: top;
  color: #999999;
}

File

twitter.css
View source
  1. /**
  2. * Styles to render a tweet as it is shown at Twitter.com.
  3. *
  4. * Thanks @makangus.
  5. */
  6. div.view-tweets ul{
  7. list-style-type: none;
  8. padding: 0px;
  9. }
  10. .twitter-status{
  11. background: #ffffff;
  12. color: #333333;
  13. padding: 10px 10px 0;
  14. margin-bottom: 2px;
  15. font-size: 1.077em;
  16. line-height: 1.42857142857143em;
  17. }
  18. .twitter-status .timestamp{
  19. float: right;
  20. color: #999999;
  21. font-size: 0.85714285714286em;
  22. }
  23. .twitter-status .name-handle{
  24. margin-left: 60px;
  25. }
  26. .twitter-status .text{
  27. margin-left: 60px;
  28. }
  29. .twitter-status .name-handle .name, .twitter-status .name-handle .handle{
  30. display: inline;
  31. }
  32. .twitter-status .name-handle .name a{
  33. font-weight: bold;
  34. margin-right: 5px;
  35. color: #333333;
  36. }
  37. .twitter-status .name-handle .handle a{
  38. color: #999999;
  39. font-size: 0.85714285714286em;
  40. }
  41. .twitter-status .avatar{
  42. float: left;
  43. }
  44. .twitter-status .avatar img{
  45. border-radius: 3px;
  46. }
  47. .twitter-status a {
  48. color: #30a9ff;
  49. }
  50. .twitter-status a:hover {
  51. text-decoration: underline;
  52. }
  53. .twitter-status .actions{
  54. text-align: right;
  55. font-size: 0.85714285714286em;
  56. padding: 0;
  57. margin: 0;
  58. visibility: hidden;
  59. }
  60. .twitter-status:hover .actions{
  61. visibility: visible;
  62. }
  63. .twitter-status .actions li{
  64. display: inline-block;
  65. list-style: none;
  66. padding: 0;
  67. margin: 0;
  68. }
  69. .twitter-status .actions a{
  70. display: inline-block;
  71. line-height: 16px;
  72. margin-left: 10px;
  73. vertical-align: top;
  74. color: #999999;
  75. }