orientation_utils.css 669 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. .orientation-msg-container{
  2. width: 100%;
  3. height: 100%;
  4. display: none;
  5. position: fixed;
  6. background-color: #000;
  7. }
  8. .orientation-msg-text{
  9. font-size: 40px;
  10. font-family: "Arial";
  11. color: #fff;
  12. text-align: center;
  13. width: 80%;
  14. position: fixed;
  15. top: 50%;
  16. -webkit-transform: translate(15%,-50%);
  17. -moz-transform: translate(15%,-50%);
  18. -ms-transform: translate(15%,-50%);
  19. transform: translate(15%,-50%);
  20. }
  21. @media (max-width: 767px) {
  22. .orientation-msg-text{
  23. font-size: 30px;
  24. }
  25. }
  26. @media (max-width: 500px) {
  27. .orientation-msg-text{
  28. font-size: 30px;
  29. }
  30. }