* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.tryit_board {
  text-align: center;
  margin-top: 5px;
  height: 90px;
}
nav {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background: #f1f1f1;
}
nav ul {
  margin-left: 10px;
  display: flex;
}
nav ul :nth-child(2),
nav ul :nth-child(3) {
  padding: 10px 15px;
}
nav ul li {
  list-style: none;
  cursor: pointer;
  color: #757575;
  font-size: 20px;
}
nav ul li:hover {
  background-color: #ccc;
}
nav ul li a {
  text-decoration: none;
  color: #757575;
  display: block;
  padding: 10px 15px;
}
#result_size {
  margin-right: 10px;
}

.container_wrap {
  padding: 0 10px 10px 10px;
  height: calc(100vh - 138px);
  background: #f1f1f1;
}

#container {
  height: 100%;
  display: flex;
  width: 100%;
  position: relative;
}
#sheild {
  width: 100%;
  height: 100%;
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  display: none;
}

#leftDiv {
  flex: 1;
  box-shadow: 0 0 5px #b6b5b5;
  min-width: 10%;
  min-height: 10%;
}

#textareaCode {
  width: 100%;
  height: 100%;
  border: none;
  outline-style: none;
  resize: none;
  padding: 5px;
}
/* codemirror inner div css */
.CodeMirror.cm-s-default {
  height: 100%;
  font-size: 15px;
}
span.cm-m-xml.cm-tag.cm-bracket {
  color: #0000cd; /* Color for < and > symbols */
}
span.cm-m-xml.cm-tag {
  color: #ff0000; /* tag color change*/
}
span.cm-m-xml.cm-attribute {
  color: #008000; /* attribute color change*/
}
span.cm-m-javascript.cm-property {
  color: #008000; /* javascript property color change*/
}

#rightDiv {
  width: 50%;
  position: relative;
  padding: 0 0 0 15px;
}

#iframeResult {
  width: 100%;
  height: 100%;
  border: none;
  background: #fff;
  box-shadow: 0 0 5px #b6b5b5;
}
#dragHandle {
  width: 10px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  cursor: col-resize;
}
