Day 329

The next piece of the codepen rebuild...
#CodingPhase #TheCodingWay #365CodingPhaseChallenge

**********

.code {
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  background: #1b2b34;
}
.editor {
  display: grid;
  grid-template-rows: auto 1fr;
}
.editor__header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 5px;
  grid-gap: 5px;
  background: rgba(0,0,0,0.1);
}
.editor__code {
  display: grid;
  grid-template-columns: auto 1fr;
}
.editor__number {
  display: block;
  padding: 0 10px;
}
.editor__input {
  resize: none;
  background: none;
  border: 0;
  color: grey;
  font-size: 16px;
  line-height: 19px;
}

/* Pen Header */
.pen {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-flow: column;
  align-items: center;
  grid-gap: 10px;
  background: black;
  border-bottom: 5px solid var(--grey);
  color: white;
  padding: 10px;
}
.preview {
  display: grid;
}

Comments

Popular posts from this blog

Day 1

Day 365 + 1

Day 365 + 2