Нема описа

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. 'use strict';
  2. const autoHeightHtml0 = `<p style="font-weight: 400;font-style: normal;font-size: 21px;line-height: 1.58;letter-spacing: -.003em;">Tags are great for describing the essence of your story in a single word or phrase, but stories are rarely about a single thing. <span style="background-color: transparent !important;background-image: linear-gradient(to bottom, rgba(146, 249, 190, 1), rgba(146, 249, 190, 1));">If I pen a story about moving across the country to start a new job in a car with my husband, two cats, a dog, and a tarantula, I wouldn’t only tag the piece with “moving”. I’d also use the tags “pets”, “marriage”, “career change”, and “travel tips”.</span></p>`;
  3. const autoHeightHtml1 = `Tags are great for describing the essence of your story in a single word or phrase, but stories are rarely about a single thing. If I pen a story about moving across the country to start a new job in a car with my husband, two cats, a dog, and a tarantula, I wouldn’t only tag the piece with “moving”. I’d also use the tags “pets”, “marriage”, “career change”, and “travel tips”.`;
  4. const style0 = `
  5. p {
  6. font-size: 25px !important;
  7. }
  8. `;
  9. const style1 = `
  10. p {
  11. font-size: 12px !important;
  12. }
  13. `;
  14. const inlineBodyStyle = `
  15. body {
  16. display: inline-block
  17. }
  18. `;
  19. const autoHeightScript = `
  20. var styleElement = document.createElement('style');
  21. styleElement.innerHTML = '${style1.replace(/\'/g, "\\'").replace(/\n/g, '\\n')}';
  22. document.head.appendChild(styleElement);
  23. document.body.style.background = 'cornflowerblue';
  24. `;
  25. const autoWidthHtml0 = `<p style="display: inline-block;background-color: transparent !important;background-image: linear-gradient(to bottom, rgba(146, 249, 190, 1), rgba(146, 249, 190, 1));font-weight: 400;font-style: normal;font-size: 21px;line-height: 1.58;letter-spacing: -.003em;">hey</p>`;
  26. const autoWidthHtml1 = `<p style="display: inline-block;background-color: transparent !important;font-size: 35px;">hey</p>`;
  27. const autoWidthScript = `
  28. var styleElement = document.createElement('style');
  29. styleElement.innerHTML = '${style1.replace(/\'/g, "\\'").replace(/\n/g, '\\n')}';
  30. document.head.appendChild(styleElement);
  31. `;
  32. export {
  33. autoHeightHtml0,
  34. autoHeightHtml1,
  35. style0,
  36. autoHeightScript,
  37. autoWidthHtml0,
  38. autoWidthHtml1,
  39. autoWidthScript,
  40. inlineBodyStyle
  41. };