月がきれいですね。
오늘 달이 참 밝네요.
  • etc. 기본 스크립트

    *CSS 부분에 추가


    01

    스크롤바 제거


    1
    2
    3
    4
    5
    ::-webkit-scrollbar {
     
    display:none;
     
    cs


    02

    textarea/ button/ input 파란 선 제거


    1
    textarea:focus { outline:none; }
    cs


    1
    2
    3
    button:focus {
      outline: none;
    }
    cs


    1
    2
    3
    input:focus {
      outline: none;
    }
    cs


    03

    블로그 배경에 이미지 넣기


    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    body {background-image: url(이미지주소);
          background-repeat: no-repeat;
          background-attachment: fixed;
          background-size: cover;
          background-position: center;}
    table, td {background-color: transparent;
    cs


    *이미지 주소는 스킨 편집 - 파일 업로드 - 파일 우클릭 - 주소 복사


    04

    배경 그라데이션


    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    body {
      background: linear-gradient(-135deg, #오른쪽상단색, #왼쪽하단색) fixed;
    }
    div {
      margin: 0px 0;
      text-align: center;
    }
    {
      font-family: Meiryo, "Hiragino Kaku Gothic Pro W3", Courier New, sans-serif;
      line-height: 1.5;
      margin-bottom: 25px;
      color: #fff;
    }
    cs


    05

    신고 및 공유 버튼 없애기


    1
    2
    /* 신고 및 공유 버튼 없애기 */
    .container_postbtn {display: none}
    cs


    06

    티스토리 메뉴바(툴바) 숨기기


    1
    2
    /* 티스토리 메뉴바(툴바) 숨기기 */
    #tistorytoolbarid { display : none; }
    cs


    07

    카테고리 모두보기 없애기


    1
    2
    /* 카테고리 분류 전체보기 없애기 */
    .tt_category .link_tit { display: none !important } 
    cs