You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

91 lines
1.8 KiB

/*******************************
Global loader Styles
*******************************/
/* Standard Size */
.ui.loader {
display: inline-block;
width: 32px;
height: 32px;
background: url(../images/loader-medium.gif) no-repeat;
background-position: 48% 0px;
}
.ui.loader.center {
position: absolute;
top: 50%;
left: 50%;
margin: -16px 0px 0px -16px;
z-index: 1000;
}
/* Large Size */
.ui.loader.large {
width: 64px;
height: 64px;
background-image: url(../images/loader-large.gif);
}
.ui.loader.large.center {
margin: -32px 0px 0px -32px;
}
/* Small Size */
.ui.loader.small {
width: 24px;
height: 24px;
background-image: url(../images/loader-small.gif);
}
.ui.loader.small.center {
margin: -12px 0px 0px -12px;
}
/* Tiny Size */
.ui.loader.tiny {
width: 16px;
height: 16px;
background-image: url(../images/loader-tiny.gif);
}
.ui.loader.tiny.center {
margin: -8px 0px 0px -8px;
}
/* Text Styles */
.ui.loader.text {
width: auto !important;
height: auto !important;
text-align: center;
font-style: normal;
margin-top: -28px;
min-width: 32px;
padding-top: 40px;
font-size: 14px;
font-weight: bold;
}
.ui.loader.text.tiny {
margin-top: -16px;
min-width: 16px;
padding-top: 20px;
font-size: 11px;
}
.ui.loader.text.small {
margin-top: -23px;
min-width: 24px;
padding-top: 32px;
font-size: 13px;
}
.ui.loader.text.large {
margin-top: -46px;
min-width: 64px;
padding-top: 80px;
font-size: 16px;
}
/* Blue */
.ui.loader.text.blue {
color: #ffffff;
}
.ui.loader.tiny.blue {
background-image: url(../images/loader-blue-tiny.gif);
}
.ui.loader.small.blue {
background-image: url(../images/loader-blue-small.gif);
}
.ui.loader.blue {
background-image: url(../images/loader-blue-medium.gif);
}
.ui.loader.large.blue {
background-image: url(../images/loader-blue-large.gif);
}