styles.css 1.4 KB

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