status.css 674 B

12345678910111213141516171819202122232425262728293031323334353637
  1. /* ----------------------------------
  2. * Status
  3. * ---------------------------------- */
  4. section[role="status"] {
  5. background: rgba(64,64,64,1) url(status/images/ui/pattern.png) repeat left top;
  6. overflow: hidden;
  7. position: absolute;
  8. z-index: 100;
  9. left: 0;
  10. right: 0;
  11. bottom: 0;
  12. color: #fff;
  13. text-align: left;
  14. }
  15. section[role="status"] p {
  16. font-size: 1.8rem;
  17. font-weight: normal;
  18. line-height: 2.2rem;
  19. margin: 1rem 3rem;
  20. padding: 0;
  21. text-align: left;
  22. }
  23. section[role="status"] p strong {
  24. font-weight: 500;
  25. }
  26. /*
  27. * Right to Left View
  28. */
  29. html[dir="rtl"] section[role="status"],
  30. html[dir="rtl"] section[role="status"] p {
  31. text-align: right;
  32. }