Skip to Content

CSS File

URL: https://tools.hostboxonline.com/assets/site_new/css/responsive.css
HTTP Status: 200 OK
MIME Type: text/css
Last Modified: Sun, 04 Nov 2018 12:08:10 GMT
Download Time: Less than a second
Cookies: None
Size: 13 KB
Rules: 140 style rules
Imports: 0 stylesheets
HTTP Headers:  29 headers
Links In:  1 pages
Links Out:  0 links
Images:  0 images
CSS:  0 files
JavaScript:  0 files
OK Issues: No issues found

1/*------------------------------

2 PRELOADER

3-------------------------------*/

4

5.preeloader {

6 background: rgba(255, 255, 255, 1) none repeat scroll 0 0;

7 height: 100%;

8 position: fixed;

9 width: 100%;

10 z-index: 999999;

11}

12

13.preloader-spinner {

14 -webkit-animation: 1s ease-out 0s normal none infinite running pulsate;

15 animation: 1s ease-out 0s normal none infinite running pulsate;

16 border: 5px solid #292929;

17 border-radius: 40px;

18 display: block;

19 height: 40px;

20 left: 50%;

21 margin: -20px 0 0 -20px;

22 opacity: 0;

23 position: fixed;

24 top: 50%;

25 width: 40px;

26 z-index: 10;

27}

28

29@-webkit-keyframes pulsate {

30 0% {

31 opacity: 0;

32 -webkit-transform: scale(0.1);

33 transform: scale(0.1);

34 }

35 50% {

36 opacity: 1;

37 }

38 100% {

39 opacity: 0;

40 -webkit-transform: scale(1.2);

...

</html>