help.css 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. /**
  2. * @file
  3. * Mediteran styles for the help component.
  4. */
  5. .block-help {
  6. padding: 0;
  7. /* background-color: #eff9ff; */
  8. background-size: 16px;
  9. background-position: 16px 19px;
  10. background-repeat: no-repeat;
  11. /* background-image: url(../../images/icons/help_2.svg); */
  12. margin-bottom: 20px;
  13. word-wrap: break-word;
  14. overflow-wrap: break-word;
  15. }
  16. .block-help p,
  17. .block-help p a {
  18. margin: 0;
  19. line-height: 1.8;
  20. }
  21. .block-help h2 {
  22. margin-top: 0;
  23. }
  24. /* help section */
  25. .help-section ul {
  26. margin: 0;
  27. padding: 0;
  28. }
  29. @media screen and (min-width: 768px) {
  30. .help-section .layout-column:nth-child(odd) ul {
  31. padding: 0 10px 0 0;
  32. }
  33. }
  34. @media screen and (min-width: 1200px) {
  35. .help-section ul {
  36. padding: 0 10px 0 0;
  37. }
  38. .help-section .layout-column:last-child ul {
  39. padding: 0;
  40. }
  41. }
  42. .help-section ul li {
  43. list-style: none;
  44. margin-bottom: 10px;
  45. }
  46. .help-section ul li a {
  47. display: flex;
  48. background: #f5f5f5;
  49. padding: 10px 15px;
  50. text-decoration: none;
  51. font-weight: 700;
  52. }
  53. .help-section ul li {
  54. font-weight: 700;
  55. font-size: 14px;
  56. text-transform: uppercase;
  57. }
  58. .help-section ul li a:hover {
  59. background: #eff9ff;
  60. }