styles.css 1.5 KB

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