Dark Christmas.css 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. body{
  2. background-image:url("/static/misc/christmas-dark-bg.png");
  3. }
  4. .home::before{
  5. content:"";
  6. position:fixed;
  7. top:0;
  8. left:0;
  9. width:100%;
  10. height:100%;
  11. background-image:url("/static/misc/snow.png");
  12. pointer-events:none;
  13. z-index:-1;
  14. animation:snowfall 12s linear infinite;
  15. opacity:.6;
  16. }
  17. .home{
  18. background:#1d2021;
  19. }
  20. @keyframes snowfall{
  21. from{
  22. background-position:0% 0px;
  23. }
  24. to{
  25. background-position:0% 600px;
  26. }
  27. }
  28. :root{
  29. /* background */
  30. --1d2021: #1d2021;
  31. --282828: #282828;
  32. --3c3836: #3c3836;
  33. --504945: #504945;
  34. /* font */
  35. --928374: #928374;
  36. --a89984: #bdae93;
  37. --bdae93: #d5c4a1;
  38. --8ec07c: #8ec07c;
  39. --ebdbb2: #ebdbb2;
  40. /* code highlighter */
  41. --comment: #9e8e73;
  42. --default: #d4be98;
  43. --keyword: #d8a657;
  44. --string: #7daea7;
  45. /* color codes for instance list */
  46. --green: #b8bb26;
  47. --yellow: #d8a657;
  48. --red: #fb4934;
  49. }
  50. .web .wiki-head table, .about table, .web .info-table, .instances table{
  51. background:#1d202170;
  52. color:#bdae93;
  53. }
  54. .web .wiki-head tr:nth-child(odd), .about table tr:nth-child(odd), .web .info-table tr:nth-child(even), .nextpage, .spoiler-button, .instances tbody tr:nth-child(even){
  55. background:#28282870;
  56. color:#bdae93;
  57. }
  58. .instances tbody tr:hover{
  59. background:#3c383690;
  60. }
  61. .wiki-head .description{
  62. overflow:initial !important;
  63. }
  64. .wiki-head .photo{
  65. position:relative;
  66. }
  67. .wiki-head .photo::after{
  68. content:"";
  69. position:absolute;
  70. width:100px;
  71. height:100px;
  72. background-image:url("/static/misc/christmas-hat.png");
  73. background-size:contain;
  74. top:-61px;
  75. left:-31px;
  76. transform:rotate(310deg);
  77. }