style.css 2.4 KB

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