25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

74 lines
1.6 KiB

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