Logo css part Bairati College

 body {

  margin0;
  padding0;
  box-sizingborder-box;
  backgroundrgb(1134);
  background-sizecover;
}

.center {
  positionabsolute;
  top50%;
  left50%;
  transformtranslate(-50%-50%);
  width200px;
  height200px;
  box-sizingborder-box;
  border15px solid rgba(0008);
  border-radius50%;
}
.circle1 {
  width100%;
  height100%;
  border-radius50%;
  border-stylesolid;
  border-width5px;
  border-color#1fc40f #e74c3c #9b59b6 #2ecc71;
  box-sizingborder-box;
  animation: animateCircle1 5s linear infinite;
  background#262626;
}
.circle2 {
  positionabsolute;
  top16px;
  left16px;
  widthcalc(100% - 40px);
  heightcalc(100% - 40px);
  border-radius50%;
  border4px dashed #fff;
  animation: animateCircle2 10s linear infinite;
}

.circle3 {
  positionabsolute;
  top20px;
  left20px;
  widthcalc(100% - 40px);
  heightcalc(100% - 40px);
  border-radius50%;
  backgroundurl(logo.png);
  background-sizecover;
}
@keyframes animateCircle1 {
  0% {
    transformrotate(0deg);
  }
  100% {
    transformrotate(360deg);
  }
}

@keyframes animateCircle2 {
  0% {
    transformrotate(360deg);
  }
  100% {
    transformrotate(0deg);
  }
}

Comments