Horje
css loading spinner with text Code Example
css loading spinner with text
.centered {
  text-align: center;
}

.spinner.loading {
  display: none;
  padding: 50px;
  text-align: center;
}

.loading-text {
  width: 90px;
  position: absolute;
  top: calc(50% - 15px);
  left: calc(50% - 45px);
  text-align: center;
}

.spinner.loading:before {
  content: "";
  height: 90px;
  width: 90px;
  margin: -15px auto auto -15px;
  position: absolute;
  top: calc(50% - 45px);
  left: calc(50% - 45px);
  border-width: 8px;
  border-style: solid;
  border-color: #2180c0 #ccc #ccc;
  border-radius: 100%;
  animation: rotation .7s infinite linear;
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}




Css

Related
simple css reset Code Example simple css reset Code Example
curved lines css Code Example curved lines css Code Example
css hollow circle Code Example css hollow circle Code Example
change icon color to gradient css Code Example change icon color to gradient css Code Example
How to access a value defined in the application.properties file in Spring Boot Code Example How to access a value defined in the application.properties file in Spring Boot Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
8