recipe-instruction.css 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. /**
  2. * @file
  3. * This file is used to style the 'field-recipe-instruction' field.
  4. */
  5. .field--name-field-recipe-instruction .field__label {
  6. margin: 0 0 1em 0;
  7. padding: 0 0 0.6em 0;
  8. border-bottom: 1px solid #eec2cb;
  9. font-family: "Scope One", Georgia, serif;
  10. font-size: 1.266rem;
  11. font-weight: 400;
  12. line-height: 1.2;
  13. }
  14. /* Large */
  15. @media screen and (min-width: 60rem) {
  16. /* 960px */
  17. .field--name-field-recipe-instruction .field__label {
  18. margin: 0 0 1.5em 0;
  19. font-size: 1.77rem;
  20. }
  21. }
  22. .field--name-field-recipe-instruction ol {
  23. padding: 0;
  24. list-style-type: none;
  25. }
  26. .field--name-field-recipe-instruction ol > li {
  27. position: relative;
  28. min-height: 1.5em;
  29. padding: 0 0 0.6em 2.5em; /* LTR */
  30. list-style: none;
  31. counter-increment: step-counter;
  32. }
  33. [dir=rtl] .field--name-field-recipe-instruction ol > li {
  34. padding: 0 2.5em 0.6em 0;
  35. }
  36. .field--name-field-recipe-instruction ol > li::before {
  37. position: absolute;
  38. top: 0;
  39. left: 0; /* LTR */
  40. content: counter(step-counter);
  41. color: #cc2a00;
  42. font-size: 1.5rem;
  43. }
  44. [dir=rtl] .field--name-field-recipe-instruction ol > li::before {
  45. right: 0;
  46. left: auto;
  47. }