Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
 
 
 
 

69 rindas
1.3 KiB

  1. @use '../../_global/styles/mixins' as *;
  2. @use '../../_global/styles/vars' as *;
  3. .intro {
  4. padding: 0;
  5. overflow: hidden;
  6. margin: calc(2vw + 20px) 0 calc(2vw + 30px);
  7. + #toclist > section:first-child {
  8. margin-top: 0;
  9. }
  10. @media(max-width: 767px) {
  11. padding: 0;
  12. }
  13. h1 {
  14. position: relative;
  15. padding-bottom: 0.7em;
  16. container-type: inline-size;
  17. &:first-child {
  18. margin-top: 0.1em;
  19. }
  20. &:last-child {
  21. margin-bottom: 0;
  22. }
  23. &:after {
  24. content: "";
  25. position: absolute;
  26. left: 0.05em;
  27. bottom: calc(0.15em - var(--border-width) / 2);
  28. height: var(--border-width);
  29. width: calc(50vw + 460px);
  30. @include gradient;
  31. @media(max-width: 999px) {
  32. width: calc(100% + 30px);
  33. }
  34. }
  35. }
  36. > p:first-of-type, > div.text:first-of-type {
  37. &::first-letter:not(.no-initial) {
  38. font-size: 3.3em;
  39. line-height: 1;
  40. margin: -0.03em 0.08em -0.2em -0.02em;
  41. font-weight: 400;
  42. display: inline-block;
  43. vertical-align: top;
  44. float: left;
  45. }
  46. }
  47. .detail-text > *:last-child {
  48. margin-bottom: 0;
  49. }
  50. }
  51. [data-browser="firefox"] {
  52. .intro > p:first-of-type::first-letter,
  53. .intro > .text:first-of-type::first-letter,
  54. .initial::first-letter {
  55. margin-top: 0.113em;
  56. }
  57. }