_site-header.scss 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. // Site header
  2. .site-header {
  3. padding: 1rem 1em 0.75rem;
  4. text-align: center;
  5. &.featured-image {
  6. display: flex;
  7. flex-direction: column;
  8. justify-content: space-between;
  9. min-height: 90vh;
  10. .site-branding-container {
  11. margin-bottom: auto;
  12. }
  13. }
  14. @include media(tablet) {
  15. margin: 0;
  16. padding: 2rem 0 1.5rem;
  17. &.featured-image {
  18. min-height: 100vh;
  19. margin-bottom: 3rem;
  20. }
  21. }
  22. }
  23. // Site branding
  24. .site-branding {
  25. color: $color__text-light;
  26. position: relative;
  27. @include media(tablet) {
  28. margin: 0 $size__site-margins;
  29. }
  30. }
  31. // Site logo
  32. .site-logo {
  33. position: relative;
  34. z-index: 999;
  35. display: inline-block;
  36. margin-bottom: 0.5rem;
  37. @include media(tablet) {
  38. margin-bottom: 1rem;
  39. z-index: 999;
  40. }
  41. .custom-logo-link {
  42. box-sizing: content-box;
  43. overflow: hidden;
  44. display: block;
  45. .custom-logo {
  46. min-height: inherit;
  47. max-height: 66px;
  48. vertical-align: top;
  49. width: auto;
  50. @include media(tablet) {
  51. max-height: 88px;
  52. }
  53. }
  54. }
  55. }
  56. // Site title
  57. .site-title,
  58. .site-title.wp-block-a8c-site-title,
  59. .site-title.wp-block-a8c-site-title:focus {
  60. margin: 0;
  61. display: block;
  62. color: $color__text-main;
  63. font-size: $font__size-lg;
  64. a {
  65. color: $color__text-main;
  66. &:link,
  67. &:visited {
  68. color: $color__text-main;
  69. }
  70. &:hover {
  71. color: $color__text-hover;
  72. }
  73. }
  74. .featured-image & {
  75. margin: 0;
  76. }
  77. /* When there is no description set, make sure navigation appears below title. */
  78. + .main-navigation {
  79. display: block;
  80. }
  81. @include media(tablet) {
  82. display: block;
  83. }
  84. }
  85. // Site description
  86. .site-description,
  87. .block-editor .wp-block-a8c-site-description,
  88. .wp-block-a8c-site-description,
  89. .wp-block-a8c-site-description:focus {
  90. display: block;
  91. color: $color__text-main;
  92. font-weight: normal;
  93. margin: 8px 0 0;
  94. }