Advertisement
Guest User

Untitled

a guest
Aug 16th, 2021
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.94 KB | None | 0 0
  1. body {
  2.   background-image: url('https://i.imgur.com/LL6RA4s.jpg');
  3. }
  4.  
  5. div.breadcrumbs {
  6.   color: limegreen;
  7. }
  8.  
  9. div.breadcrumbs a {
  10.   color: yellow;
  11.   text-shadow: 0 0 1px black, 0 0 3px blue, 0 0 5px darkblue;
  12. }
  13.  
  14. div.breadcrumbs a:visited {
  15.   color: darkorange;
  16. }
  17.  
  18. #filter {
  19.   background-color: #014;
  20.   background-color: rgba(0, 16, 64, 0.9);
  21. }
  22.  
  23. #filter img {
  24.   opacity: 75%;
  25. }
  26.  
  27. #forum th, #forum th a {
  28.   background-color: #111;
  29.   color: green;
  30.   text-shadow: 0 0 2px black;
  31. }
  32.  
  33. #forum, #subforums {
  34.   background-color: rgba(0,0,0,0);
  35.   border: none;
  36. }
  37.  
  38. #filter,
  39. #subforums tbody tr:first-child td {
  40.   box-shadow: none;
  41.   border: 2px solid black;
  42. }
  43.  
  44. .forum_268 #forum td.star,
  45. #forum td.title,
  46. #forum td.replies,
  47. #forum td.rating,
  48. #subforums td.title,
  49. #subforums td.posts {
  50.   background-color: #014;
  51.   background-color: rgba(0, 16, 64, 0.9);
  52.   border: 2px solid black;
  53. }
  54.  
  55. #forum td.icon,
  56. #forum td.author,
  57. #forum td.views,
  58. #forum td.lastpost,
  59. #subforums td.topics {
  60.   background-color: #125;
  61.   background-color: rgba(16, 32, 80, 0.9);
  62.   border: 2px solid black;
  63. }
  64.  
  65. #forum td.icon img {
  66.   -webkit-animation:spin 3600s linear infinite;
  67.   -moz-animation:spin 3600s linear infinite;
  68.   animation:spin 3600s linear infinite;
  69. }
  70. @-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } }
  71. @-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } }
  72. @keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }
  73.  
  74. #forum div {
  75.   color: goldenrod;
  76.   box-shadow: none;
  77. }
  78.  
  79. #forum div a,
  80. #forum div a.thread_inner {
  81.   color: #99f;
  82.   text-shadow: none;
  83. }
  84.  
  85. .forumdisplay #forum.threadlist td.title.title_sticky div.info a.thread_title {
  86.   text-shadow: 0 0 1px black, 0 0 2px cyan;
  87.   font-weight: bold;
  88. }
  89.  
  90. #forum tr td.title div.lastseen,
  91. #forum tr td.title div.lastseen a,
  92. #forum tr td.title div.lastseen {
  93.   background-color: #111;
  94.   text-shadow: none;
  95.  
  96. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement