/*!********************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./style/reset.scss ***!
  \********************************************************************/
* {
  margin: 0;
  font-family: 'Noto Sans KR', sans-serif;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  font-family: 'Noto Sans KR', sans-serif;
  /* font-size: 16px; */
}

body {
  font-family: 'Noto Sans KR', sans-serif;
  color: #000;
}

h1 {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  background-color: transparent;
  border: 0;
  padding: 0;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}

button,
input,
select,
textarea:focus {
  outline: none;
  box-shadow: none;
}

a,
button {
  cursor: pointer;
}

ul,
ol {
  list-style: none;
}

/*!***********************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./style/index.scss ***!
  \***********************************************************************************************************/
#app {
  display: flex;
  height: 100vh;
}

.sidebar {
  flex-grow: 0;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  width: 240px;
  height: 100%;
  max-height: 100%;
  color: rgba(25, 23, 17, 0.6);
  font-size: 14px;
  font-weight: 500;
  background: rgb(247, 246, 243);
  z-index: 99;
}

.sidebar_contents_wrap {
  margin-top: 80px;
}

.page_list {
  display: none;
  padding-left: 14px;
}

#root {
  display: block;
}

.visible {
  display: block;
}

.page {
  width: 100%;
  min-height: 27px;
  padding-bottom: 2px 0;
  text-align: left;
  cursor: pointer;
}

.page_focuable_elements {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 27px;
  padding: 2px 0;
}

.page_toggleButton {
  width: 20px;
  flex-grow: 0;
  flex-shrink: 0;
  color: rgba(25, 23, 17, 0.4);
}

.page_toggleButton i {
  width: 100%;
  text-align: left;
}

.page_name {
  flex: 1 1 auto;
  width: 140px;
  font-size: 14px;
  font-weight: 500;
  text-align: left;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.page_add_pageButton,
.page_removeButton {
  flex-grow: 0;
  flex-shrink: 0;
  padding: 0 4px;
  color: rgba(25, 23, 17, 0.4);
}

.create_page_button {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 27px;
  padding: 2px 14px;
}

/* ---------------------------------- */
.edit_frame {
  flex-grow: 0;
  flex-shrink: 1;
  display: flex;
  flex-direction: column;
  width: 1200px;
  height: 100%;
  max-height: 100%;
}

.editor {
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  color: rgb(55, 53, 47);
}

.editor input,
.editor textarea {
  display: block;
  width: 900px;
  padding-left: 96px;
  padding-right: 96px;
}

.editor input[name=title] {
  height: 53px;
  margin-top: 80px;
  font-weight: 700;
  line-height: 1.2;
  font-size: 40px;
}

.editor input[name=title]::placeholder {
  color: rgba(55, 53, 47, 0.15);
}

.editor textarea[name=content] {
  height: 90%;
  padding-bottom: 30vh;
  margin-top: 20px;
  font-size: 16px;
}

.editor textarea[name=content]::placeholder {
  color: rgba(55, 53, 47, 0.15);
}
