content.less 828 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. #sh-content {
  2. position: fixed;
  3. top: 0;
  4. right: 0;
  5. bottom: 0;
  6. left: 240px;
  7. height: 100%;
  8. .inform {
  9. position: absolute;
  10. z-index: 100;
  11. top: 5px;
  12. right: 10px;
  13. opacity: 0.5;
  14. background: #fff;
  15. i {
  16. display: none;
  17. color: #666;
  18. margin-left: 5px;
  19. &.show {
  20. display: inline-block;
  21. }
  22. }
  23. span {
  24. display: none;
  25. &.show {
  26. display: inline-block;
  27. }
  28. }
  29. }
  30. .errorMessage {
  31. display: none;
  32. position: absolute;
  33. z-index: 101;
  34. top: 0;
  35. left: 0;
  36. right: 0;
  37. padding: 4px 40px;
  38. text-align: center;
  39. background: rgba(153, 0, 0, 0.5);
  40. color: #fff;
  41. transition: 0.5s;
  42. &.show {
  43. display: block;
  44. }
  45. }
  46. }
  47. .platform-win32 {
  48. #sh-content {
  49. .inform {
  50. right: 20px;
  51. }
  52. }
  53. }