최대 1 분 소요

[minimal-mistakes] page style customize

minimal_mistakes를 사용해서 github blog를 운영하고 있다.
다 좋은데.. 몇가지 나의 심기를 건드는 디자인들이 있어 이를 직접 Customize를 해보자. 😂


inline 코드 색상 변경

  1. inline 코드 블럭 색상
    • _sass/minimal-mistakes/_variables.scss에서 $code-background-color 색상 조절
  2. inline 코드 내부 색상 변경
    • _sass/minimal-mistakes/_base.scss 에서 Line 163의 css selector에 color 속성 추가
      1
      2
      3
      4
      5
      6
      7
      8
      9
      10
      11
      12
      13
      14
      15
      16
      17
      
        p > code,
        a > code,
        li > code,
        figcaption > code,
        td > code {
          padding-top: 0.1rem;
          padding-bottom: 0.1rem;
          font-size: 0.8em;
          background: $code-background-color;
          border-radius: $border-radius;
          color: #eb6060;
          &:before,
          &:after {
            letter-spacing: -0.2em;
            content: "\00a0"; /* non-breaking space*/
          }
        }
      

댓글남기기