search.scss 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. table {
  2. tr {
  3. th {
  4. color: #b3b3b3;
  5. }
  6. }
  7. }
  8. #movieSearch {
  9. > h5 {
  10. font-weight: bold;
  11. text-align: center;
  12. padding: 0.938rem 0 0 0;
  13. }
  14. .search-list {
  15. a.poster-img {
  16. .ratio-2x3 {
  17. --bs-aspect-ratio: 150%;
  18. }
  19. img {
  20. object-fit: cover;
  21. &:hover,
  22. &:focus {
  23. outline: 1px solid #0a7bb9;
  24. }
  25. }
  26. }
  27. dl {
  28. margin-top: 10px;
  29. dt {
  30. a {
  31. font-size: 15px;
  32. text-decoration: none;
  33. &:hover,
  34. &:focus {
  35. text-decoration: underline;
  36. }
  37. }
  38. }
  39. dd {
  40. margin-top: 5px;
  41. var {
  42. display: inline-block;
  43. padding-left: 0;
  44. }
  45. sub {
  46. font-size: 15px;
  47. font-weight: 500;
  48. margin-right: 5px;
  49. }
  50. }
  51. }
  52. }
  53. }