regalia.css 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. <!--
  2. /* "Regalia" for Layout V4 */
  3. body {
  4. background-color: #5c7e70;
  5. font-family: monospace;
  6. color: #FFFFFF;
  7. max-width:900px;
  8. margin: auto;
  9. font-size: large;
  10. margin-bottom: 10px;
  11. }
  12. .center {
  13. text-align: center;
  14. }
  15. .index {
  16. max-width: 551px;
  17. }
  18. a, a:visited {
  19. color: inherit;
  20. }
  21. .box, .card, nav, .check {
  22. margin-top: 3%;
  23. margin-left: auto;
  24. margin-right: auto;
  25. padding: 10px 10px 5px 20px;
  26. }
  27. .box, .card, nav {
  28. background: #000000;
  29. }
  30. .check {
  31. background: #1114;
  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: yellow;
  52. }
  53. code {
  54. color: violet;
  55. }
  56. i, em {
  57. color: red;
  58. }
  59. td {
  60. text-align: center;
  61. }
  62. img.big {
  63. max-width: 100%;
  64. height: auto;
  65. display: block;
  66. margin-left: auto;
  67. margin-right: auto;
  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. -->