24 lines
443 B
CSS
24 lines
443 B
CSS
/* Portrait */
|
|
@media screen and (orientation:portrait) {
|
|
/* Portrait styles */
|
|
.loadingSfondo{
|
|
padding-top: 100px;
|
|
width: 45%;
|
|
}
|
|
|
|
.loadingText{
|
|
margin-top: 35%;
|
|
}
|
|
}
|
|
/* Landscape */
|
|
@media screen and (orientation:landscape) {
|
|
/* Landscape styles */
|
|
.loadingSfondo{
|
|
padding-top: 40px;
|
|
width: 25%;
|
|
}
|
|
|
|
.loadingText{
|
|
margin-top: 5%;
|
|
}
|
|
} |