Search
 
SCRIPT & CODE EXAMPLE
 

CSS

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);
  }
}
Comment

PREVIOUS NEXT
Code Example
Css :: fond de couleur noir et texte en blanc css 
Css :: inine css 
Css :: skip main content - keyboard accessible buttons on navbar - css 
Css :: move left and right text css 
Css :: Image not rendering in tailwind css 
Css :: adding whitespace in box 
Css :: responsive header with logo and menu css code 
Css :: input on Internet explore has close icon 
Css :: unable to select text in website css cursor type 
Css :: nhandled Rejection (TypeError): Cannot read property 
Css :: Pass argument to group_by 
Css :: hwo to reload css in flask 
Css :: Display the Widget Area 
Css :: how to override hover css 
Css :: Drupal 8 Notice: Trying to get property 
Css :: 3d trapezoid 
Css :: css animation cheat sheet 
Css :: bulk order pre cooked pasta 
Css :: how to get rid of underline for links in css 
Css :: How to do addition or subtraction on CSS Variables? 
Css :: button expo css 
Css :: css id with mask wildcard 
Css :: how to highlight text in css 
Css :: media query min and max width for all devices 
Typescript :: vscode custom snippets how to use file name 
Typescript :: select elements id like jquery 
Typescript :: use jquery in angular 
Typescript :: how to add a new propety into all documents in mongodb 
Typescript :: leaderstats roblox setup 
Typescript :: python requests header allow redirect false 
ADD CONTENT
Topic
Content
Source link
Name
4+2 =