jett.css 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. <!--
  2. /* "Jett" for Layout V3 */
  3. @media only screen and (min-width: 900px) {
  4. body {
  5. float: right;
  6. padding-right: 70px;
  7. min-width: 500px;
  8. overflow: scroll;
  9. overflow-x: hidden;
  10. }
  11. }
  12. body {
  13. background-image: url("./css/jett.png");
  14. background-repeat: no-repeat;
  15. background-size: cover;
  16. background-attachment: fixed;
  17. background-color: #000000;
  18. background-position: top left;
  19. font-family: monospace;
  20. color: #FFFFFF;
  21. max-width:900px;
  22. margin: auto;
  23. font-size: large;
  24. margin-bottom: 10px;
  25. }
  26. .index {
  27. max-width: 670px;
  28. }
  29. a, a:visited {
  30. text-decoration: none;
  31. color: inherit;
  32. }
  33. .box, .card, nav {
  34. margin-top: 3%;
  35. margin-left: auto;
  36. margin-right: auto;
  37. background: #242424;
  38. padding: 10px 10px 5px 20px;
  39. }
  40. .box-smaller {
  41. max-width: 700px;
  42. }
  43. table {
  44. width: 100%;
  45. padding: 3px;
  46. }
  47. article a, ul a, td a, .bruh {
  48. text-decoration: underline;
  49. }
  50. hr {
  51. display: none;
  52. }
  53. b, strong {
  54. color: #685b71;
  55. }
  56. i, em, code {
  57. color: #7daeaa;
  58. }
  59. img.big {
  60. width: 100%;
  61. height: auto;
  62. }
  63. td {
  64. text-align: center;
  65. }
  66. /* https://orangeable.com/css/animated-gradient-text */
  67. .lesbian {
  68. background: linear-gradient(-45deg, #D52D00, #EF7627, #FF9A56, #FFFFFF, #D162A4, #B55690, #A30262);
  69. background-size: 300%;
  70. font-weight: bold;
  71. -webkit-background-clip: text;
  72. -webkit-text-fill-color: transparent;
  73. animation: animated_text 8s ease-in-out infinite;
  74. -moz-animation: animated_text 8s ease-in-out infinite;
  75. -webkit-animation: animated_text 8s ease-in-out infinite;
  76. }
  77. @keyframes animated_text {
  78. 0% { background-position: 0px 50%; }
  79. 50% { background-position: 100% 50%; }
  80. 100% { background-position: 0px 50%; }
  81. }
  82. -->