This css is for home page loader in front page(with progress bar and logo) only, the max heigh and width should be less than the logo size, if the logo image is 360 x 120 px:
#logo-loading .logo-image {
max-height: 120px; max-width: 360px;
}
This css for page loader for other pages(with logo only):
.site-loading-logo img {
max-height: 120px; max-width: 360px;
}
If the logo is not centered, please add a margin left:
.site-loading-logo img {
margin-left: -120px;
}