trailer.scss 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. #movieTrailer {
  2. > h5 {
  3. font-weight: bold;
  4. text-align: center;
  5. padding: 0.938rem 0 0 0;
  6. }
  7. .trailer-list {
  8. & > div > img {
  9. width: 100%;
  10. cursor: pointer;
  11. &:hover,
  12. &:focus {
  13. outline: 1px solid #0a7bb9;
  14. }
  15. }
  16. dl {
  17. margin-top: 10px;
  18. dt {
  19. a {
  20. font-size: 15px;
  21. text-decoration: none;
  22. &:hover,
  23. &:focus {
  24. text-decoration: underline;
  25. }
  26. }
  27. }
  28. dd {
  29. margin-top: 8px;
  30. var {
  31. display: inline-block;
  32. padding-left: 0;
  33. }
  34. sub {
  35. font-size: 15px;
  36. font-weight: 500;
  37. margin-right: 5px;
  38. }
  39. }
  40. }
  41. }
  42. #trailerModal {
  43. .modal-content {
  44. .modal-header,
  45. .modal-body {
  46. background: #000;
  47. border: 0;
  48. }
  49. .modal-body {
  50. padding: 0;
  51. }
  52. }
  53. }
  54. }