_header.scss 862 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. .top {
  2. @include themify($themes) {
  3. background-color: themed('single-header-title-background-color');
  4. }
  5. }
  6. .header {
  7. @include flexbox();
  8. @include justify-content(center);
  9. @include align-items(center);
  10. @include flex-direction(column);
  11. .title {
  12. font-family: $title-font;
  13. font-weight: 900;
  14. }
  15. &__wrapper {
  16. @include themify($themes) {
  17. border-bottom: 1px solid themed('border-line-color');
  18. }
  19. }
  20. }
  21. .blog-header {
  22. @include flexbox();
  23. @include justify-content(center);
  24. @include flex-direction(column);
  25. &__title {
  26. line-height: 1.1;
  27. font-weight: 700;
  28. font-family: $title-font;
  29. }
  30. &__subtitle {
  31. line-height: 1.2;
  32. }
  33. &__align-left {
  34. @include align-items(flex-start);
  35. }
  36. &__align-center {
  37. @include align-items(center);
  38. }
  39. &__align-right {
  40. @include align-items(flex-end);
  41. }
  42. }