Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* CUSTOMIZAÇÃO DA MODAL DE CARREGAMENTO */
- .loader {
- position: fixed;
- width: 100%;
- height: 100%;
- left: 0;
- top: 0;
- background-color: #000;
- opacity: .4;
- z-index: 9999;
- }
- .loader-div {
- display: block;
- position: absolute;
- top: 50%;
- left: 50%;
- color: #999;
- width: 100px;
- height: 30px;
- margin: -7px 0 0 -45px;
- text-align: center;
- font-family: 'PT Sans Narrow', sans-serif;
- font-size: 20px;
- }
- .loader img {
- display: block;
- position: relative;
- left: 50%;
- top: 50%;
- width: 170px;
- height: 170px;
- margin: -85px 0 0 -85px;
- border: 3px solid #F00;
- max-width: 100%;
- width: auto\9;
- height: auto;
- border: 0;
- }
- .loader img:after {
- content: "";
- position: absolute;
- border: 3px solid #0F0;
- left: 15px;
- right: 15px;
- top: 15px;
- bottom: 15px;
- }
- .loader img:before {
- content: "";
- position: absolute;
- border: 3px solid #00F;
- left: 5px;
- right: 5px;
- top: 5px;
- bottom: 5px;
- }
- .loader-div div {
- border: 3px solid transparent;
- border-top-color: #4D658D;
- border-bottom-color: #4D658D;
- border-radius: 50%;
- -webkit-animation: loader 2s linear infinite;
- -moz-animation: loader 2s linear infinite;
- -o-animation: loader 2s linear infinite;
- animation: loader 2s linear infinite;
- }
- .loader-div div:before {
- border: 3px solid transparent;
- border-top-color: #D4CC6A;
- border-bottom-color: #D4CC6A;
- border-radius: 50%;
- -webkit-animation: loader 3s linear infinite;
- -moz-animation: loader 2s linear infinite;
- -o-animation: loader 2s linear infinite;
- animation: loader 3s linear infinite;
- }
- .loader-div div:after {
- border: 3px solid transparent;
- border-top-color: #84417C;
- border-bottom-color: #84417C;
- border-radius: 50%;
- -webkit-animation: loader 1.5s linear infinite;
- animation: loader 1.5s linear infinite;
- -moz-animation: loader 2s linear infinite;
- -o-animation: loader 2s linear infinite;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement