thisisnotras

stylebot

Mar 27th, 2016
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.41 KB | None | 0 0
  1. /* FORMAT NAMES IN ROOMS */
  2.  
  3. #roomlogs tr td:nth-child(1) {
  4. text-align: right;
  5. }
  6.  
  7. #roomlogs tr:nth-child(1) td {
  8. text-align: left;
  9. }
  10.  
  11. #userlist * {
  12. font-style: normal;
  13. text-align: left;
  14. }
  15.  
  16. span.tooltip.tooltipstered {
  17. font-style: italic;
  18. font-weight: 400;
  19. }
  20.  
  21. td a span {
  22. font-style: italic;
  23. font-weight: 400;
  24. text-align: right ;
  25. text-shadow: 0px 0px .01px;
  26. }
  27.  
  28. tr td * {
  29. text-align: justify;
  30. text-justify: inter-word;
  31. }
  32.  
  33. tr td span {
  34. word-break: break-word;
  35. }
  36.  
  37. /* FORMAT NAMES IN ROOMS - END */
  38.  
  39. /* FORMAT NAMES IN PM */
  40.  
  41. #pmslogs .altrowstable td:nth-child(1) *, #pmslogs .altrowstable td:nth-child(2) * {
  42. font-weight: 400;
  43. font-style: italic;
  44. text-shadow: 0px 0px .01px;
  45. }
  46.  
  47. /* FORMAT NAMES IN PM - END */
  48.  
  49. /* CAUSE TEXT TO FLASH */
  50.  
  51. .rpcblink {
  52. -webkit-animation: colorflash 2s infinite;
  53. animation: colorflash 2s infinite;
  54. }
  55.  
  56. @keyframes colorflash {
  57. 0% {
  58.  
  59. -webkit-opacity: 1;
  60. -webkit-opacity: 1;
  61. opacity: 1;
  62. }
  63. 50% {
  64.  
  65. -webkit-opacity: 0;
  66. -webkit-opacity: 0;
  67. opacity: 0;
  68. }
  69. 100% {
  70. -webkit-opacity: 1;
  71. -webkit-opacity: 1;
  72. opacity: 1;
  73. }
  74. }
  75.  
  76. /* CAUSE TEXT TO FLASH - END */
  77.  
  78.  
  79. /* TEXT SHADOW */
  80.  
  81. .rpcdouble{
  82. text-shadow: 1px 1px 2px gray;
  83. }
  84.  
  85. /* STRIKETHROUGH */
  86.  
  87. .rpcstrike{
  88. text-decoration: line-through;
  89. }
Advertisement
Add Comment
Please, Sign In to add comment