* {
  margin: 0;
  padding: 0;
}

ul,
li {
  list-style: none;
}

body > section {
  display: none;
  width: auto;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
}

.linear .item,
.radial .item,
.conic .item,
.repeat .item,
.other .item {
  display: inline-block;
  width: 200px;
  height: 200px;
  margin-right: 15px;
  border: 1px solid #0aa;
}

.linear1 {
  background-image: linear-gradient(#e33, #45e);
}

.linear1 {
  background-image: linear-gradient(#e33 25%, #f93 10%, #45e);
}

.linear2 {
  background-image: linear-gradient(0.25turn, #1bf, #ebf8e1, #f93);
}

.linear3 {
  background-image: linear-gradient(217deg, rgba(255, 0, 0, .8), rgba(255, 0, 0, 0) 70.71%),
    linear-gradient(127deg, rgba(0, 255, 0, .8), rgba(0, 255, 0, 0) 70.71%),
    linear-gradient(336deg, rgba(0, 0, 255, .8), rgba(0, 0, 255, 0) 70.71%);
}

.linear4 {
  background-image: linear-gradient(#1bf 33.33%, #e33 0, #e33  66.66%, #45e 0);
  background-size: 100% 42px;
}


.radial1 {
  background-image: radial-gradient(#1bf, #45e);
}

.radial2 {
  background-image: radial-gradient(at top, #1bf, #45e);
}

.radial3 {
  background-image: radial-gradient(circle at top, #1bf, #45e);
}

.radial4 {
  background-image: radial-gradient(circle closest-corner at top, #1bf, #45e);
}

.radial5 {
  background-image: radial-gradient(ellipse 50px 50px at top, #1bf, #45e);
}

.radial6 {
  background-image: radial-gradient(#3f87a6 33.33%, #fb3 0, #fb3 66.66%, #e45b5a 0);
  background-size: 42px 42px;
}


.conic1 {
  background-image: conic-gradient(red, orange, yellow, green, teal, blue, purple);
}

.conic2 {
  background-image: conic-gradient(from 40deg, red 0deg, orange 90deg, yellow 180deg, green 270deg, blue 360deg)
}

.conic3 {
  background-image: conic-gradient(from 40deg at 25% 25%, red 0deg, orange 90deg, yellow 180deg, green 270deg, blue 360deg)
}

.conic4 {
  background-image: conic-gradient(red 36deg, orange 36deg 170deg, yellow 170deg);
}

.conic5 {
  background-image: conic-gradient(red 12.5%, orange 0 37.5%, red 0 62.5%, orange 0 87.5%, red 0);
  background-size: 50px 50px;
}

.conic6 {
  background-image: conic-gradient(#3f87a6 33.33%, #fb3 0, #fb3 66.66%, #e45b5a 0);
  background-size: 42px 42px;
}

.conic7 {
  position: relative;
  background: conic-gradient(rgba(255, 152, 0, 1) 0, rgba(255, 152, 0, 0) 100%);
  border: 0;
  text-align: center;
  vertical-align: top;
}

.conic7:after {
  position: absolute;
  top: 20%;
  left: 20%;
  display: block;
  width: 60%;
  height: 60%;
  content: "";
  background: #fff;
}


.repeat1 {
  background-image: repeating-linear-gradient(-45deg, transparent, transparent 25px, #0aa 25px, #0aa 50px);
}

.repeat2 {
  background-image:
    repeating-linear-gradient(transparent, transparent 23%, #0aa 23%, #0aa 27%),
    repeating-linear-gradient(90deg, transparent, transparent 23%, #0aa 23%, #0aa 27%);
}

.repeat3 {
  background-image: repeating-radial-gradient(red, yellow 10%, green 15%);
}

.repeat4 {
  background-image: repeating-radial-gradient(circle, red, red 10px, yellow 10px, yellow 20px);
  background-size: 25px;
}

.repeat5 {
  background-image: repeating-conic-gradient(red 0 9deg, yellow 9deg 18deg);
}

.repeat6 {
  background-image: repeating-conic-gradient(red 0 9deg, yellow 9deg 18deg);
  background-size: 50px 50px;
}

.other .item {
  font-weight: bold;
  text-align: center;
  vertical-align: middle;
}

.other1 {
  border: 20px solid transparent !important;
  border-image: linear-gradient(to top, #0aa, orange) !important;
  border-image-slice: 20 !important;
  box-sizing: border-box;
}

.other2 {
  font-size: 42px;
  background-image: linear-gradient(to top, #0aa, orange);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.other3 {
  font-size: 42px;
  position: relative;
  color: #0aa;
}

.other3::before {
  position: absolute;
  color: orange;
  -webkit-mask: linear-gradient(to top, #0aa, transparent);
  content: attr(text);
  z-index: 1;
}

.other4 .gradient-text-three {
  fill: url(#SVGID1_);
  font-size: 48px;
}
