bartz.css 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. <!--
  2. /* "Bartz" for Layout V4 */
  3. /* https://web.archive.org/web/20240310130126/http://eastfarthing.com/luculent/ */
  4. @font-face {
  5. font-family: 'LuculentBold';
  6. src: url('./css/fonts/luculentb.woff');
  7. font-weight: bold;
  8. font-style: normal;
  9. }
  10. @font-face {
  11. font-family: 'LuculentRegular';
  12. src: url('./css/fonts/luculent.woff');
  13. font-weight: normal;
  14. font-style: normal;
  15. }
  16. body {
  17. background-color: #cfaf6a;
  18. font-family: 'LuculentRegular', monospace;
  19. color: #FFFFFF;
  20. max-width:900px;
  21. margin: auto;
  22. font-size: large;
  23. margin-bottom: 10px;
  24. }
  25. td, .center {
  26. text-align: center;
  27. }
  28. .index {
  29. max-width: 551px;
  30. }
  31. a, a:visited {
  32. color: inherit;
  33. }
  34. .box, .card, nav {
  35. margin-top: 3%;
  36. margin-left: auto;
  37. margin-right: auto;
  38. padding: 10px 10px 5px 20px;
  39. }
  40. .box, .card, nav {
  41. background: #000000;
  42. }
  43. .box-smaller {
  44. max-width: 700px;
  45. }
  46. table {
  47. width: 100%;
  48. padding: 3px;
  49. }
  50. article a, ul a, td a, .bruh {
  51. text-decoration: underline;
  52. }
  53. pre {
  54. font-size: small;
  55. overflow: auto;
  56. }
  57. hr {
  58. display: none;
  59. }
  60. b, strong {
  61. color: #1b8d0e;
  62. font-family: 'LuculentBold', monospace;
  63. }
  64. code {
  65. color: #a891c5;
  66. }
  67. i, em {
  68. color: #007ef7;
  69. }
  70. img.big {
  71. max-width: 100%;
  72. height: auto;
  73. display: block;
  74. margin-left: auto;
  75. margin-right: auto;
  76. }
  77. /* https://orangeable.com/css/animated-gradient-text */
  78. .lesbian {
  79. background: linear-gradient(-45deg, #D52D00, #EF7627, #FF9A56, #FFFFFF, #D162A4, #B55690, #A30262);
  80. background-size: 300%;
  81. font-weight: bold;
  82. -webkit-background-clip: text;
  83. -webkit-text-fill-color: transparent;
  84. animation: animated_text 8s ease-in-out infinite;
  85. -moz-animation: animated_text 8s ease-in-out infinite;
  86. -webkit-animation: animated_text 8s ease-in-out infinite;
  87. }
  88. @keyframes animated_text {
  89. 0% { background-position: 0px 50%; }
  90. 50% { background-position: 100% 50%; }
  91. 100% { background-position: 0px 50%; }
  92. }
  93. /* http://xjfbpuj56rdazx4iolylxplbvyft2onuerjeimlcqwaihp3s6r4xebqd.onion/about-foogallery-video/ */
  94. #player-overlay {
  95. position: relative;
  96. top: 0;
  97. left: 0;
  98. width: 100%;
  99. height: 100%;
  100. background-color: #000;
  101. z-index: 999;
  102. }
  103. video {
  104. display: block;
  105. width: 100%;
  106. height: 100%;
  107. }
  108. -->