style.css 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. body {
  2. background: #000F1C url(newsletter.png);
  3. color:#51C1A5;
  4. }
  5. /* unvisited link */
  6. a:link {
  7. color: #00F461;
  8. }
  9. /* visited link */
  10. a:visited {
  11. color: #28E031;
  12. }
  13. /* mouse over link */
  14. a:hover {
  15. color: #00F428;
  16. }
  17. /* selected link */
  18. a:active {
  19. color: #00F465;
  20. }
  21. table {
  22. border-collapse: collapse;
  23. }
  24. td, th {
  25. text-align: left;
  26. padding: 8px;
  27. }
  28. tr:nth-child(even) {
  29. background-color: #007759;
  30. }
  31. /* While this part was cool, I decided to remove it due to accessibility reasons, but what it did was remove the underlines for links
  32. a:link { text-decoration: none; }
  33. a:visited { text-decoration: none; }
  34. a:hover { text-decoration: underline; }
  35. a:active { text-decoration: underline; } */
  36. /* What font to use */
  37. h1, h2, h3, a, th, li, li, blockquote, center {
  38. font-family: Ubuntu, "Noto Sans", "Liberation Sans", Helvetica, Arial, sans-serif;
  39. }
  40. pre, tt, xmp, ubuntu-mono {
  41. font-family: monospace, "Ubuntu Monospace", Courier;
  42. }
  43. p {
  44. font-family: Ubuntu, "Noto Sans", "Liberation Sans", Helvetica, Arial, sans-serif;
  45. }
  46. a {
  47. text-decoration: underline;
  48. }
  49. a:hover {
  50. text-decoration: none;
  51. }
  52. /* The following was written by devils.gay - thank you */
  53. uppercase, yell {
  54. text-transform: uppercase;
  55. }
  56. /* Thnak you to Job of joppiesaus.neocities.org for not only writing the following CSS, but also allowing me to use it */
  57. /* Job has been a friend of mine for a few years now, and it would really make me happy if you checked out their website */
  58. figure {
  59. display: block;
  60. margin: 0 auto;
  61. max-width: 95vw;
  62. border: 1px solid #999;
  63. background: #000;
  64. background: rgba(0, 0, 0, 0.5);
  65. width: min-content;
  66. border-radius: 2px;
  67. }
  68. figure {
  69. float: right;
  70. max-width: 33vw;
  71. margin: 3px;
  72. margin-left: 5px;
  73. margin-right: 0;
  74. }
  75. /* The Following code has been written by Randy and has given his consent for me to use it */
  76. /* I am unsure if the following code *can* even be copyrighted due to how generic it is */
  77. blockquote {
  78. border-left: 0.1em solid #cc66ff;
  79. padding-left: 0.3em; }
  80. /* The following has been taken from the below URL */
  81. /* https://learn2dev.com/articles/css-shorts/spoilers */
  82. .spoiler-text {
  83. background: black;
  84. color: transparent;
  85. cursor: help;
  86. user-select: none;
  87. transition: background 0.3s ease 0.2s, color 0.2s ease 0.25s;
  88. }
  89. .spoiler-text:hover,
  90. .spoiler-text:focus {
  91. background: #e8e8e8;
  92. color: inherit;
  93. }
  94. /* Following taken from /accessibility/#autoplay part of the website */
  95. .flashing {
  96. -webkit-filter: blur(5px); /* For Safari 6.0 - 9.0 */
  97. filter: blur(5px);
  98. }
  99. .flashing:hover {
  100. -webkit-filter: none;
  101. filter: none;
  102. }
  103. .tag {
  104. padding: 10px;
  105. border: 5px solid gray;
  106. margin: 0;
  107. background-color: #0D253D;
  108. }
  109. .emoji {
  110. width: 1rem;
  111. }