styles.css 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. html * {
  2. font-family: Arial;
  3. color: white;
  4. background-color: black;
  5. }
  6. body header {
  7. position: fixed;
  8. }
  9. header a {
  10. font-size: 32px;
  11. color: white;
  12. }
  13. a {
  14. font-family: Arial;
  15. text-decoration: none;
  16. }
  17. .hashmatch {
  18. color: green;
  19. }
  20. #header {
  21. margin: auto;
  22. }
  23. #header:hover {
  24. cursor: pointer;
  25. }
  26. main {
  27. display: flex;
  28. justify-content: center;
  29. width: 80%;
  30. margin: auto;
  31. flex-wrap: wrap;
  32. }
  33. .file-entry {
  34. padding: 0.2rem 0.5rem;
  35. width: 100%;
  36. display: flex;
  37. flex-wrap: wrap;
  38. align-items: start;
  39. }
  40. .file-entry .file-header {
  41. display: flex;
  42. flex-wrap: nowrap;
  43. width: 100%;
  44. }
  45. .file-entry .file-header h2 {
  46. width: 100%;
  47. min-width: fit-content;
  48. }
  49. .file-entry .file-header .has-subs {
  50. width: 100%;
  51. margin-top: 1.5rem;
  52. margin-left: 1rem;
  53. width: 100%;
  54. }
  55. .file-entry .meta {
  56. width: 50%;
  57. border-box: content;
  58. max-height: 16rem;
  59. }
  60. .file-entry .sub-meta {
  61. overflow-y: scroll;
  62. }
  63. .file-entry h2:hover {
  64. cursor: pointer;
  65. }
  66. .subtitles {
  67. width: 100%;
  68. max-height: 24rem;
  69. overflow-y: scroll;
  70. }
  71. .sub-container {
  72. width: 100%;
  73. display: flex;
  74. justify-content: center;
  75. align-items: center;
  76. border-box: content;
  77. border-bottom: 1px dotted gray;
  78. padding-bottom: 0.2rem;
  79. }
  80. .sub-container-title {
  81. width: 50%;
  82. text-align: center;
  83. }
  84. .sub-container-info {
  85. width: 50%;
  86. display: flex;
  87. flex-wrap: wrap;
  88. flex-gap: 0.1rem;
  89. justify-content: center;
  90. }
  91. .sub-meta-inner {
  92. border-bottom: 1px dotted gray;
  93. }
  94. .info {
  95. width: 100%;
  96. padding: 0.3rem;
  97. margin: 0.1rem;
  98. text-align: center;
  99. }
  100. .guess {
  101. width: 100%;
  102. }
  103. .download-button {
  104. font-size: 16px;
  105. width: 16rem;
  106. height: 3rem;
  107. margin: 0.5rem 0rem;
  108. }
  109. .download-button:hover {
  110. cursor: pointer;
  111. }
  112. .dir:hover {
  113. cursor: pointer;
  114. }