Advertisement
ASTROBAKER

CSS

Feb 15th, 2019
176
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.92 KB | None | 0 0
  1. /*------------------------------------------------------
  2. * Don't hide post count
  3. *------------------------------------------------------*/
  4. .posts_by_id{
  5. display:initial!important;
  6. font-weight:bold;
  7. }
  8.  
  9. /*------------------------------------------------------
  10. * Fake yous are obvious
  11. *------------------------------------------------------*/
  12. .body small {
  13. font-weight:bold;
  14. color: #117743;
  15. text-shadow: #ffffff 0 0 8px;
  16. }
  17. .body small:hover {
  18. color:#11bb11;
  19. }
  20.  
  21. /*------------------------------------------------------
  22. * The only real trips are Patriot Trips
  23. *------------------------------------------------------*/
  24. time:before, span.trip::before{
  25. font-size:18px;
  26. content:" ";
  27. color:#bbbbff;
  28. }
  29. time::after, span.trip::after {
  30. font-size:18px;
  31. content: " ";
  32. color:#bbbbff;
  33. }
  34.  
  35.  
  36. span.trip, span.capcode{
  37. padding:1px 3px 1px 3px;
  38. background-color:black;
  39. border-radius:8px;
  40. border:1px solid #bbbbee;
  41. color:gold;
  42. background: linear-gradient(300deg, #ff0000, #ff0000, #ff0000, #bbbbbb, #4444ff);
  43. background-size: 800% 800%;
  44.  
  45. -webkit-animation: Patriot 5s ease infinite;
  46. -moz-animation: Patriot 5s ease infinite;
  47. -o-animation: Patriot 5s ease infinite;
  48. animation: Patriot 5s ease infinite;
  49. -webkit-text-fill-color: transparent;
  50.  
  51. background: -o-linear-gradient(transparent, transparent);
  52. -webkit-background-clip: text;
  53. }
  54.  
  55. @-webkit-keyframes Patriot {
  56. 0%{background-position:0% 19%}
  57. 50%{background-position:100% 82%}
  58. 100%{background-position:0% 19%}
  59. }
  60. @-moz-keyframes Patriot {
  61. 0%{background-position:0% 19%}
  62. 50%{background-position:100% 82%}
  63. 100%{background-position:0% 19%}
  64. }
  65. @-o-keyframes Patriot {
  66. 0%{background-position:0% 19%}
  67. 50%{background-position:100% 82%}
  68. 100%{background-position:0% 19%}
  69. }
  70. @keyframes Patriot {
  71. 0%{background-position:0% 19%}
  72. 50%{background-position:100% 82%}
  73. 100%{background-position:0% 19%}
  74. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement