Advertisement
NordBaker

8ch CSS thingy

May 5th, 2019
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.99 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. .name {
  25. font-size:14px;
  26. }
  27.  
  28. time:before, span.trip::before{
  29. font-size:18px;
  30. content:" ";
  31. color:#bbbbff;
  32. }
  33. time::after, span.trip::after {
  34. font-size:18px;
  35. content: " ";
  36. color:#bbbbff;
  37. }
  38.  
  39.  
  40. span.trip, span.capcode{
  41. padding:1px 3px 1px 3px;
  42. background-color:black;
  43. border-radius:8px;
  44. border:1px solid #bbbbee;
  45. color:gold;
  46. background: linear-gradient(300deg, #ff0000, #ff0000, #ffffff, #ffffff, #0000ff, #0000ff, #ffffff, #ffffff);
  47. background-size: 1600% 1600%;
  48.  
  49. -webkit-animation: Patriot 30s ease infinite;
  50. -moz-animation: Patriot 30s ease infinite;
  51. -o-animation: Patriot 30s ease infinite;
  52. animation: Patriot 30s ease infinite;
  53. -webkit-text-fill-color: transparent;
  54.  
  55. background: -o-linear-gradient(transparent, transparent);
  56. -webkit-background-clip: text;
  57. }
  58.  
  59. @-webkit-keyframes Patriot {
  60. 0%{background-position:0% 19%}
  61. 50%{background-position:100% 82%}
  62. 100%{background-position:0% 19%}
  63. }
  64. @-moz-keyframes Patriot {
  65. 0%{background-position:0% 19%}
  66. 50%{background-position:100% 82%}
  67. 100%{background-position:0% 19%}
  68. }
  69. @-o-keyframes Patriot {
  70. 0%{background-position:0% 19%}
  71. 50%{background-position:100% 82%}
  72. 100%{background-position:0% 19%}
  73. }
  74. @keyframes Patriot {
  75. 0%{background-position:0% 19%}
  76. 50%{background-position:100% 82%}
  77. 100%{background-position:0% 19%}
  78. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement