<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/* Original file: modules/board/skins/xet_simpleboard_rx/css/_form.scss */
/* _form.scss
--------------------------------------------------------------------------------------------------------*/
#xet-simple-board {
  /** 비밀글일때 비밀번호 요청 폼 */
  /** 삭제 폼 */
}
#xet-simple-board form {
  /* input type */
  /** 등록 버튼 */
}
#xet-simple-board form select {
  background-color: #fff;
}
#xet-simple-board form input:not([type="checkbox"]):not([type="radio"]):not([type="button"]):not([type="submit"]):not([type="file"]), #xet-simple-board form textarea {
  padding: 0 10px;
  font-size: 14px;
  width: 100%;
  height: 38px;
  vertical-align: middle;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid var(--input-border-color);
  outline: 0;
  background-color: #fff;
  color: var(--text-strongColor);
  transition: all 0.3s ease-out;
}
#xet-simple-board form textarea {
  padding: 10px;
  height: 200px;
  resize: vertical;
}
#xet-simple-board form select:focus, #xet-simple-board form input:focus, #xet-simple-board form textarea:focus {
  color: var(--text-strongColor) !important;
  border-color: var(--color-primary) !important;
}
#xet-simple-board form input.date, #xet-simple-board form input[type="date"], #xet-simple-board form input[name="birthday_ui"] {
  width: auto !important;
}
#xet-simple-board form input[type="tel"] {
  width: 60px !important;
}
#xet-simple-board form input[name="phone_number"] {
  width: 100% !important;
}
#xet-simple-board form input[type="file"] {
  display: block;
}
#xet-simple-board form input[type="checkbox"], #xet-simple-board form input[type="radio"] {
  margin: 0;
  padding: 0;
  width: 14px;
  height: 14px;
  vertical-align: middle;
}
#xet-simple-board form input[type="checkbox"] + label, #xet-simple-board form input[type="radio"] + label {
  margin-left: 4px;
}
#xet-simple-board form input[disabled], #xet-simple-board form textarea[disabled], #xet-simple-board form select[disabled], #xet-simple-board form input[readonly], #xet-simple-board form select[readonly], #xet-simple-board form textarea[readonly] {
  cursor: not-allowed;
  opacity: 1;
  /* required on iOS */
  color: #999 !important;
  background-color: #eee !important;
  box-shadow: none !important;
  text-shadow: none !important;
}
#xet-simple-board form input[type="radio"][readonly], #xet-simple-board form input[type="checkbox"][readonly] {
  background-color: transparent;
}
#xet-simple-board form button[type="submit"] {
  min-width: 100px;
  min-height: 40px;
  border: 1px solid var(--input-border-color);
}
#xet-simple-board form button[type="submit"].submit {
  background-color: var(--btn-border-color);
  color: #fff;
}
#xet-simple-board .input-password-form {
  max-width: 480px;
  margin: 0 auto;
  padding: 0 !important;
  text-align: center;
  border: 0 !important;
  background-color: transparent !important;
}
#xet-simple-board .input-password-form .form__header {
  text-align: center;
  padding: 15px;
}
#xet-simple-board .input-password-form .form__header svg {
  width: 20px;
  height: 20px;
}
#xet-simple-board .input-password-form .form__header h2.title {
  margin: 10px 0 0;
  font-size: 18px;
  color: var(--text-strongColor);
}
#xet-simple-board .input-password-form .control-group {
  margin-bottom: 10px;
}
#xet-simple-board .input-password-form .control-group .controls {
  display: flex;
  align-items: center;
  gap: 4px;
}
#xet-simple-board .input-password-form input[type="password"] {
  flex: 1;
  min-width: 160px;
}
#xet-simple-board .input-password-form input[type="submit"] {
  height: 38px !important;
}
#xet-simple-board .input-password-form button[type="submit"] {
  vertical-align: top;
  min-width: auto;
}
#xet-simple-board .delete-form {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%, 100%);
  width: 100%;
  max-width: 480px;
  border-radius: 10px;
  overflow: hidden;
  background-color: #fff;
  border: 1px solid var(--border-color);
}
#xet-simple-board .delete-form .form__header {
  text-align: center;
  padding: 15px;
}
#xet-simple-board .delete-form .form__header svg {
  width: 20px;
  height: 20px;
}
#xet-simple-board .delete-form .form__header h2.title {
  margin: 10px 0 0;
  font-size: 18px;
  color: var(--text-strongColor);
}
#xet-simple-board .delete-form .form__body {
  text-align: center;
  padding: 15px;
}
#xet-simple-board .delete-form .form__body div {
  margin: 0 !important;
}
#xet-simple-board .delete-form .form__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  border-top: 1px solid var(--border-color);
}
#xet-simple-board .delete-form .form__footer button {
  flex: 1;
  border-radius: 0;
  height: 60px;
  color: var(--text-strongColor);
}
/* responsive 
-------------------------------------------------------------------------------------------------------- */
@media (min-width: 992px) {
  #xet-simple-board {
    /** 삭제 폼 */
  }
  #xet-simple-board .delete-form {
    top: 50%;
    left: 50%;
    bottom: auto;
    transform: translate(-50%, -100%);
  }
}

</pre></body></html>