Search
 
SCRIPT & CODE EXAMPLE
 

CSS

blazor spinner css in wwwroot/css/site.css

.spinner {
    border: 16px solid silver;
    border-top: 16px solid #337AB7;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    animation: spin 700ms linear infinite;
    top: 40%;
    left: 55%;
    position: absolute;
}

@keyframes spin {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}
Comment

PREVIOUS NEXT
Code Example
Css :: box shadow 
Css :: glass div generator 
Css :: how to do text center of select element 
Css :: 3 column responsive grid css 
Css :: default cursor css 
Css :: cemter absolute elemetn 
Css :: react native flatlist styled height fit content 
Css :: css heart 
Css :: ionchips scroll x 
Css :: css all except last 
Css :: Install Node Sass/Scss 
Css :: change color to white svg with filter 
Css :: how to split a background into two color in css 
Css :: jquery remove css class 
Css :: how to make the list in css with square 
Css :: text-color gradient css 
Css :: roboto google apis 
Css :: laravel css image url 
Css :: border radius circle button 
Css :: media query for mobile min and max width 
Css :: reduire espace entre ligne css 
Css :: inter 
Css :: show all available virtual environments python 
Css :: stretch text to div width css 
Css :: text wrap 
Css :: vertical line between two divs 
Css :: why top -10 css? 
Css :: kerning css 
Css :: boostrap line 
Css :: remove all default styles from input 
ADD CONTENT
Topic
Content
Source link
Name
9+5 =