site-meta.styl 705 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. .site-meta {
  2. flex-grow: 1;
  3. text-align: $site-meta-text-align;
  4. +mobile() {
  5. text-align: center;
  6. }
  7. }
  8. .brand {
  9. border-bottom: none;
  10. color: var(--brand-color);
  11. display: inline-block;
  12. line-height: $font-size-title;
  13. padding: 0 40px;
  14. position: relative;
  15. &:hover {
  16. color: var(--brand-hover-color);
  17. }
  18. }
  19. .site-title {
  20. font-family: $font-family-logo;
  21. font-size: $font-size-title;
  22. font-weight: normal;
  23. margin: 0;
  24. }
  25. .site-subtitle {
  26. color: $subtitle-color;
  27. font-size: $font-size-subtitle;
  28. margin: 10px 0;
  29. }
  30. .use-motion {
  31. .brand {
  32. opacity: 0;
  33. }
  34. .site-title, .site-subtitle, .custom-logo-image {
  35. opacity: 0;
  36. position: relative;
  37. top: -10px;
  38. }
  39. }