選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 
 

67 行
1.5 KiB

  1. @use '../atoms/variables' as *;
  2. .home-body {
  3. min-height: 100vh;
  4. background: $color-bg;
  5. display: flex;
  6. flex-direction: column;
  7. }
  8. // ─── Header ──────────────────────────────────────────────────────────────────
  9. .home-header {
  10. background: linear-gradient(135deg, $color-header-from, $color-header-to);
  11. padding: $space-4 $space-8;
  12. }
  13. .home-header__inner {
  14. max-width: 1000px;
  15. margin: 0 auto;
  16. display: flex;
  17. align-items: center;
  18. justify-content: space-between;
  19. }
  20. .home-header__brand {
  21. font-size: $font-size-lg;
  22. font-weight: $font-weight-bold;
  23. color: $color-white;
  24. span {
  25. font-weight: $font-weight-regular;
  26. opacity: 0.8;
  27. }
  28. }
  29. // ─── Hero ─────────────────────────────────────────────────────────────────────
  30. .home-hero {
  31. flex: 1;
  32. display: flex;
  33. align-items: center;
  34. justify-content: center;
  35. padding: $space-12 $space-8;
  36. }
  37. .home-hero__inner {
  38. text-align: center;
  39. max-width: 600px;
  40. }
  41. .home-hero__title {
  42. font-size: 2.8rem;
  43. font-weight: $font-weight-bold;
  44. color: $color-text-dark;
  45. line-height: 1.2;
  46. margin-bottom: $space-6;
  47. }
  48. .home-hero__sub {
  49. font-size: $font-size-lg;
  50. color: $color-text-muted;
  51. margin-bottom: $space-10;
  52. line-height: $line-height-base;
  53. }
  54. .home-hero__cta {
  55. font-size: $font-size-md;
  56. padding: $space-4 $space-10;
  57. }