devie 2022. 4. 12. 11:54
@charset "utf-8";

/* reset */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

:after, :before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-size: 12px !important;
  line-height: 1.4 !important;
  /* font-family: 'NotoSansKRL' !important; */
  letter-spacing: 0.7px !important;
}

a {
  color: inherit;
  text-decoration: none;
  font-style: normal;
}

a:focus,
a:hover {
  text-decoration: none;
}

em {
  font-style: normal;
}

ul,
ol,
li {
  list-style: none;
  padding: 0;
  margin: 0;
}

textarea {
  resize: none;
}

input:focus,
textarea:focus {
  outline: none;
}

textarea:read-only,
input:read-only {
  cursor: default;
}

input[type="file"] {
  cursor: pointer;
}

.clearfix::after {
  content: '';
  display: block;
  clear: both;
}

table {
  border-collapse: collapse;
  border-spacing:0px;
}