styles.css 932 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. html * {
  2. font-family: Arial;
  3. }
  4. a {
  5. font-family: Arial;
  6. text-decoration: none;
  7. color: black;
  8. }
  9. .hashmatch {
  10. color: green;
  11. }
  12. #header {
  13. margin: auto;
  14. }
  15. #header:hover {
  16. cursor: pointer;
  17. }
  18. main {
  19. display: flex;
  20. justify-content: center;
  21. width: 80%;
  22. margin: auto;
  23. flex-wrap: wrap;
  24. }
  25. .file-entry {
  26. padding: 0.2rem 0.5rem;
  27. width: 100%;
  28. border: 1px solid black;
  29. display: flex;
  30. flex-wrap: wrap;
  31. align-items: center;
  32. }
  33. .file-entry h2:hover {
  34. cursor: pointer;
  35. }
  36. .subtitles {
  37. width: 100%;
  38. max-height: 24rem;
  39. overflow-y: scroll;
  40. }
  41. .sub-container {
  42. width: 100%;
  43. display: flex;
  44. justify-content: center;
  45. align-items: center;
  46. border-box: content;
  47. border-bottom: 1px dotted gray;
  48. padding-bottom: 0.2rem;
  49. }
  50. .sub-container-title {
  51. width: 50%;
  52. text-align: center;
  53. }
  54. .sub-container-info {
  55. width: 50%;
  56. }
  57. .sub-files {
  58. }
  59. .guess {
  60. width: 100%;
  61. }
  62. .dir:hover {
  63. cursor: pointer;
  64. }