CSS diamond background-1

by Andrey Dobrovoi

CSS

body {
  background-color: rgba(0, 0, 0, 0.3);
  background-image: -webkit-linear-gradient(45deg, rgba(0, 0, 0, 0.3) 24%, rgba(0, 0, 0, 0.4) 25%, rgba(0, 0, 0, 0.4) 26%, rgba(0, 0, 0, 0.3) 26%, rgba(0, 0, 0, 0.3) 74%, rgba(0, 0, 0, 0.4) 75%, rgba(0, 0, 0, 0.4) 76%, rgba(0, 0, 0, 0.3) 76%), -webkit-linear-gradient(135deg, rgba(0, 0, 0, 0.3) 24%, rgba(0, 0, 0, 0.4) 25%, rgba(0, 0, 0, 0.4) 26%, rgba(0, 0, 0, 0.3) 26%, rgba(0, 0, 0, 0.3) 74%, rgba(0, 0, 0, 0.4) 75%, rgba(0, 0, 0, 0.4) 76%, rgba(0, 0, 0, 0.3) 76%);
  background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.3) 24%, rgba(0, 0, 0, 0.4) 25%, rgba(0, 0, 0, 0.4) 26%, rgba(0, 0, 0, 0.3) 26%, rgba(0, 0, 0, 0.3) 74%, rgba(0, 0, 0, 0.4) 75%, rgba(0, 0, 0, 0.4) 76%, rgba(0, 0, 0, 0.3) 76%), linear-gradient(-45deg, rgba(0, 0, 0, 0.3) 24%, rgba(0, 0, 0, 0.4) 25%, rgba(0, 0, 0, 0.4) 26%, rgba(0, 0, 0, 0.3) 26%, rgba(0, 0, 0, 0.3) 74%, rgba(0, 0, 0, 0.4) 75%, rgba(0, 0, 0, 0.4) 76%, rgba(0, 0, 0, 0.3) 76%);
  background-size: 100px 100px;
}