styles.css 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  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. border-bottom: 1px dotted gray;
  45. }
  46. .file-entry .file-header h2 {
  47. width: 100%;
  48. min-width: fit-content;
  49. }
  50. .file-entry .file-header .has-subs {
  51. width: 100%;
  52. margin-top: 1.5rem;
  53. margin-left: 1rem;
  54. width: 100%;
  55. }
  56. .file-entry .meta {
  57. width: 50%;
  58. border-box: content;
  59. max-height: 16rem;
  60. }
  61. .file-entry .sub-meta {
  62. overflow-y: scroll;
  63. }
  64. .file-entry h2:hover {
  65. cursor: pointer;
  66. }
  67. .subtitles {
  68. width: 100%;
  69. max-height: 24rem;
  70. overflow-y: scroll;
  71. }
  72. .sub-container {
  73. width: 100%;
  74. display: flex;
  75. justify-content: center;
  76. align-items: center;
  77. border-box: content;
  78. border-bottom: 1px dotted gray;
  79. padding-bottom: 0.2rem;
  80. }
  81. .sub-container-title {
  82. width: 50%;
  83. text-align: center;
  84. }
  85. .sub-container-info {
  86. width: 50%;
  87. display: flex;
  88. flex-wrap: wrap;
  89. flex-gap: 0.1rem;
  90. justify-content: center;
  91. }
  92. .sub-meta-inner {
  93. border-bottom: 1px dotted gray;
  94. }
  95. .info {
  96. width: 100%;
  97. padding: 0.3rem;
  98. margin: 0.1rem;
  99. text-align: center;
  100. }
  101. .guess {
  102. width: 100%;
  103. }
  104. .download-button {
  105. font-size: 16px;
  106. width: 16rem;
  107. height: 3rem;
  108. margin: 0.5rem 0rem;
  109. }
  110. .download-button:hover {
  111. cursor: pointer;
  112. }
  113. .dir:hover {
  114. cursor: pointer;
  115. }