Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 
 
 

48 linhas
1.3 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. }
  16. .tt-header__meta {
  17. flex-shrink: 0;
  18. }
  19. .tt-header__date {
  20. font-size: $font-size-lg;
  21. font-weight: $font-weight-bold;
  22. color: var(--header-text);
  23. line-height: 1.2;
  24. }
  25. .tt-header__kw {
  26. font-size: $font-size-sm;
  27. font-weight: $font-weight-bold;
  28. color: var(--header-text-muted);
  29. line-height: 1.3;
  30. }
  31. // ─── Main Content ─────────────────────────────────────────────────────────────
  32. .tt-content {
  33. flex: 1;
  34. max-width: $content-max-width;
  35. width: 100%;
  36. margin: 0 auto;
  37. padding: $space-6;
  38. display: flex;
  39. flex-direction: column;
  40. gap: $space-4;
  41. }