Advertisement
Guest User

Untitled

a guest
Mar 22nd, 2017
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. /*
  2. 2017-02-02 for Recipe (not Rich Snippet)
  3. 2017-03-23 外部 CSS - スマホ用
  4. */
  5. .recipe .ingredients > li {
  6. position: relative;
  7. }
  8. .recipe .ingredients li::before {
  9. content: "";
  10. display: block;
  11. width: 100%;
  12. position: absolute;
  13. margin: 0.5em 0;
  14. border-top: 1px dashed silver;
  15. }
  16. .recipe .ingredients > li > .name {
  17. background-color: white;
  18. position: absolute;
  19. padding-right: 1em;
  20. }
  21. .recipe .ingredients > li >.amount {
  22. right: 0;
  23. position: absolute;
  24. background-color: white;
  25. padding-left: 1em;
  26. }
  27.  
  28. .recipe ul.ingredients {
  29. width: 70%;
  30. }
  31. .recipe .instructions p {
  32. margin: 0;
  33. padding-left: 1em;
  34. }
  35. .recipe .instructions > li {
  36. margin-top: 0.5em;
  37. }
  38. .recipe .instructions > li > ul {
  39. margin-top: 0;
  40. margin-bottom: 0;
  41. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement