영웅은 공부 따원 안 한다네/HTML CSS

[티스토리 스킨] 햄버거 누르면 메뉴 오른쪽에서 나오게 하기

귀펀치토끼 2022. 11. 22. 14:20
/*코드블럭 언어 표시*/
  .codeLabel {
    position: relative;
    margin: 10px 0 0;
  }
  .codeLabel * {
    user-select: none;
    cursor: pointer;
    font-size: 0.7em;
  }
  .codeLabel > div {
    display: inline-block;
    color: #ccc;
    text-transform: uppercase;
    background-color: #282c34;
    padding: 6px 10px;
  }
  .codeLabel span {
    color: #9c9c9c;
    margin: 10px;
  }
   .codeLabel *:hover {
    color: #ff5544;
  }
  .codeLabel span ~ label input {
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
  }