Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 
 
 

59 rader
1.5 KiB

  1. @use '../atoms/variables' as *;
  2. @use '../atoms/mixins' as *;
  3. // ─── Page Wrapper ─────────────────────────────────────────────────────────────
  4. .tt-page {
  5. @include page-shell;
  6. }
  7. // ─── Header Section ──────────────────────────────────────────────────────────
  8. .tt-header {
  9. @include section-header;
  10. padding: $space-4 $space-6;
  11. min-height: $header-height;
  12. position: sticky;
  13. top: 0;
  14. z-index: 100;
  15. @include tablet {
  16. flex-direction: column;
  17. align-items: stretch;
  18. gap: $space-3;
  19. min-height: auto;
  20. }
  21. }
  22. .tt-header__meta {
  23. flex-shrink: 0;
  24. }
  25. .tt-header__date {
  26. font-size: $font-size-lg;
  27. font-weight: $font-weight-bold;
  28. color: var(--header-text);
  29. line-height: 1.2;
  30. }
  31. .tt-header__kw {
  32. font-size: $font-size-sm;
  33. font-weight: $font-weight-bold;
  34. color: var(--header-text-muted);
  35. line-height: 1.3;
  36. }
  37. // ─── Main Content ─────────────────────────────────────────────────────────────
  38. .tt-content {
  39. flex: 1;
  40. max-width: $content-max-width;
  41. width: 100%;
  42. margin: 0 auto;
  43. padding: $space-6;
  44. display: flex;
  45. flex-direction: column;
  46. gap: $space-4;
  47. @include tablet {
  48. padding: $space-4;
  49. }
  50. }