WEB PARTS

Nice!
COPY
Nice!
COPY
* {
  margin: 0;
  padding: 0;
  list-style: none;
  box-sizing: border-box;
}

.menu {
  padding: 100px 10px;
  background: #f5eee5;
}

.menu .inner {
  max-width: 1000px;
  margin: 0 auto;
}

.menu .inner table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 40px;
}

.menu .inner table tr:first-child th,
.menu .inner table tr:first-child td {
  font-size: 14px;
  padding: 0.3em 10px;
  border-left: none;
}

@media only screen and (max-width: 600px) {
  .menu .inner table tr:first-child th,
  .menu .inner table tr:first-child td {
    font-size: 13px;
    padding: 0.3em 5px;
  }
}

.menu .inner table tr th,
.menu .inner table tr td {
  font-size: 16px;
  color: #2567aa;
  font-weight: 600;
  padding: 0.6em 10px;
  border-bottom: solid 2px #8cb7e3;
}

@media only screen and (max-width: 600px) {
  .menu .inner table tr th,
  .menu .inner table tr td {
    font-size: 14px;
    padding: 0.3em 5px;
  }
}

.menu .inner table tr th {
  text-align: left;
}

.menu .inner table tr td {
  width: 140px;
  text-align: center;
  border-left: solid 1px #c3d6e8;
}

@media only screen and (max-width: 600px) {
  .menu .inner table tr td {
    width: auto;
  }
}
/*# sourceMappingURL=style.css.map */
Nice!
COPY
* {
  margin: 0;
  padding: 0;
  list-style: none;
  box-sizing: border-box;
}

.menu {
  padding: 100px 10px;
  background: #f5eee5;
  .inner {
    max-width: 1000px;
    margin: 0 auto;
    table {
      width: 100%;
      border-collapse: collapse;
      margin-bottom: 40px;
      tr {
        &:first-child {
          th,
          td {
            font-size: 14px;
            padding: 0.3em 10px;
            border-left: none;
            @media only screen and (max-width: 600px) {
              font-size: 13px;
              padding: 0.3em 5px;
            }
          }
        }
        th,
        td {
          font-size: 16px;
          color: #2567aa;
          font-weight: 600;
          padding: 0.6em 10px;
          border-bottom: solid 2px #8cb7e3;
          @media only screen and (max-width: 600px) {
            font-size: 14px;
            padding: 0.3em 5px;
          }
        }
        th {
          text-align: left;
        }
        td {
          width: 140px;
          text-align: center;
          border-left: solid 1px #c3d6e8;
          @media only screen and (max-width: 600px) {
            width: auto;
          }
        }
      }
    }
  }
}
Nice!
COPY