51 lines
936 B
CSS
51 lines
936 B
CSS
/* Common Style */
|
|
html * {
|
|
text-rendering: optimizeLegibility;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
}
|
|
body {
|
|
font-family: 'Open Sans', sans-serif;
|
|
color: #000;
|
|
font-size: 16px;
|
|
font-weight: 400;
|
|
line-height: 24px;
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
*:focus {
|
|
border: none;
|
|
box-shadow: none;
|
|
outline: none;
|
|
}
|
|
|
|
.main-preloader {
|
|
position: fixed;
|
|
width: 100%;
|
|
height: 100%;
|
|
left: 0;
|
|
top: 0;
|
|
z-index: 999999999;
|
|
background-color: #fff;
|
|
text-align: center;
|
|
}
|
|
.main-preloader .main-preloader-inner {
|
|
font-family: 'Open Sans', sans-serif;
|
|
font-weight: 400;
|
|
position: absolute;
|
|
top: 50%;
|
|
margin-top: -60px;
|
|
width: 100%;
|
|
}
|
|
.main-preloader .preloader-percentage {
|
|
font-family: 'Open Sans', sans-serif;
|
|
font-weight: 400;
|
|
color: #000;
|
|
margin: 0;
|
|
}
|
|
.main-preloader .preloader-percentage span {
|
|
display: inline-block;
|
|
float: center;
|
|
font-size: 70px;
|
|
}
|