WEB PARTS

Nice!
COPY
  • ダミーテキストダミーテキスト

    ダミーテキストダミーテキストダミーテキストダミーテキストダミーテキストダミーテキストダミーテキストダミーテキストダミーテキストダミーテキスト

    ダミーテキストダミーテキストダミーテキストダミーテキストダミーテキストダミーテキストダミーテキストダミーテキストダミーテキストダミーテキスト

    ダミーテキスト
  • ダミーテキストダミーテキスト

    ダミーテキストダミーテキストダミーテキストダミーテキストダミーテキストダミーテキストダミーテキストダミーテキストダミーテキストダミーテキスト

    ダミーテキストダミーテキストダミーテキストダミーテキストダミーテキストダミーテキストダミーテキストダミーテキストダミーテキストダミーテキスト

    ダミーテキスト
  • ダミーテキストダミーテキスト

    ダミーテキストダミーテキストダミーテキストダミーテキストダミーテキストダミーテキストダミーテキストダミーテキストダミーテキストダミーテキスト

    ダミーテキストダミーテキストダミーテキストダミーテキストダミーテキストダミーテキストダミーテキストダミーテキストダミーテキストダミーテキスト

    ダミーテキスト
Nice!
COPY
* {
  margin: 0;
  padding: 0;
  list-style: none;
  box-sizing: border-box;
}

.list {
  background: #f5d3da;
  overflow: hidden;
}

.list .inner {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(40px, 5vw, 100px) 20px;
}

.list .inner ul li {
  background: #fff;
  padding-top: 20px;
  margin-bottom: 40px;
  -webkit-box-shadow: 10px 10px 20px -10px rgba(0, 0, 0, 0.2);
          box-shadow: 10px 10px 20px -10px rgba(0, 0, 0, 0.2);
}

.list .inner ul li:last-child {
  margin-bottom: 0;
}

.list .inner ul li h3 {
  font-size: 18px;
  display: inline-block;
  background: #f08db7;
  color: #fff;
  -webkit-box-shadow: 0.2em 0.2em 0.4em -0.2em rgba(0, 0, 0, 0.2);
          box-shadow: 0.2em 0.2em 0.4em -0.2em rgba(0, 0, 0, 0.2);
  padding: 0.3em 0.8em 0.4em;
  position: relative;
  left: -0.8em;
}

.list .inner ul li h3::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0.8em 0.8em 0;
  border-color: transparent #c35b88 transparent transparent;
  position: absolute;
  left: 0;
  bottom: -0.8em;
  z-index: 1;
}

.list .inner ul li .txt {
  max-width: 700px;
  margin: 0 auto;
  padding: 20px 15px;
}

.list .inner ul li .txt p {
  font-size: 15px;
  color: #842c52;
  margin-bottom: 0.5em;
  line-height: 1.8;
  font-weight: 500;
}

.list .inner ul li .data {
  font-size: 13px;
  color: #888;
  text-align: right;
}
/*# sourceMappingURL=style.css.map */
Nice!
COPY
* {
  margin: 0;
  padding: 0;
  list-style: none;
  box-sizing: border-box;
}

.list {
  background: #f5d3da;
  overflow: hidden;
  .inner {
    max-width: 800px;
    margin: 0 auto;
    padding: clamp(40px, 5vw, 100px) 20px;
    ul {
      li {
        background: #fff;
        padding-top: 20px;
        margin-bottom: 40px;
        box-shadow: 10px 10px 20px -10px rgba(#000, 0.2);
        &:last-child {
          margin-bottom: 0;
        }
        h3 {
          font-size: 18px;
          display: inline-block;
          background: #f08db7;
          color: #fff;
          box-shadow: 0.2em 0.2em 0.4em -0.2em rgba(#000, 0.2);
          padding: 0.3em 0.8em 0.4em;
          position: relative;
          left: -0.8em;
          &::before {
            content: "";
            display: block;
            width: 0;
            height: 0;
            border-style: solid;
            border-width: 0 0.8em 0.8em 0;
            border-color: transparent #c35b88 transparent transparent;
            position: absolute;
            left: 0;
            bottom: -0.8em;
            z-index: 1;
          }
        }
        .txt {
          max-width: 700px;
          margin: 0 auto;
          padding: 20px 15px;
          p {
            font-size: 15px;
            color: #842c52;
            margin-bottom: 0.5em;
            line-height: 1.8;
            font-weight: 500;
          }
        }
        .data {
          font-size: 13px;
          color: #888;
          text-align: right;
        }
      }
    }
  }
}
Nice!
COPY