feathers.css 2.0 KB

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