style.css 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. /* this is CC0, even though it won't work in your
  2. website unless you suck my code so hard it spews
  3. forth cross-compatibility, you magical whore */
  4. ::selection {
  5. color: #044501;
  6. background: #65D6B1;
  7. }
  8. ::-moz-selection {
  9. color: #044501;
  10. background: #65D6B1;
  11. }
  12. a {
  13. color: #3000FF;
  14. cursor: pointer;
  15. }
  16. a:hover {
  17. text-decoration: none;
  18. }
  19. body {
  20. background-color: #B5D1B1;
  21. color: black;
  22. font-family: "Arimo", "Liberation Sans", "Nimbus Sans L", "FreeSans", Arial, Helvetica, sans-serif;
  23. }
  24. img {
  25. image-rendering: -moz-crisp-edges; /*Firefox*/
  26. image-rendering: -o-crisp-edges; /*Opera*/
  27. image-rendering: -webkit-optimize-contrast; /*Chrome & Safari*/
  28. image-rendering: pixelated; /*Chrome*/
  29. image-rendering: optimize-contrast; /*CSS3 Proposed*/
  30. -ms-interpolation-mode: nearest-neighbor; /*IE8+*/
  31. /*code blatantly ripped from https://archive.is/ccmz7*/
  32. }
  33. /*title, subtitle, header, generalheader, section (body text), bigfooter, footer, links, spacer, magics*/
  34. #t {
  35. font-size: 70px;
  36. text-align: center;
  37. }
  38. #st {
  39. font-size: 45px;
  40. text-align: center;
  41. margin-top: -20px;
  42. }
  43. #h {
  44. font-size: 30px;
  45. text-align: center;
  46. }
  47. #g {
  48. font-size: 28px;
  49. margin-left: 4%;
  50. margin-right: 4%;
  51. }
  52. #s {
  53. font-size: 22px;
  54. margin-left: 8%;
  55. margin-right: 8%;
  56. text-indent: 50px;
  57. }
  58. #bf {
  59. font-size: 32px;
  60. text-align: center;
  61. }
  62. #f {
  63. font-size: 14px;
  64. text-align: center;
  65. margin-left: 8%;
  66. margin-right: 8%;
  67. }
  68. #l {
  69. text-align: center;
  70. }
  71. #sp {
  72. margin: 10px;
  73. }
  74. #magic {
  75. cursor: default;
  76. color: #B5D1B1;
  77. }
  78. @font-face {
  79. font-family: "Arimo";
  80. font-style: normal;
  81. src: url(fonts/Arimo-Regular.woff2) format("woff2");
  82. }
  83. @font-face {
  84. font-family: "Arimo";
  85. font-weight: bold;
  86. src: url(fonts/Arimo-Bold.woff2) format("woff2");
  87. }
  88. @font-face {
  89. font-family: "Arimo";
  90. font-style: italic;
  91. src: url(fonts/Arimo-Italic.woff2) format("woff2");
  92. }
  93. @font-face {
  94. font-family: "Arimo";
  95. font-style: italic;
  96. font-weight: bold;
  97. src: url(fonts/Arimo-BoldItalic.woff2) format("woff2");
  98. }