Lnav.css 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. html, body
  2. {
  3. width: 100%;
  4. height: 100%;
  5. margin: 0;
  6. padding: 0;
  7. overflow: hidden;
  8. }
  9. .U_Control_Lnav_left a
  10. {
  11. text-decoration: none;
  12. font-family: cursive;
  13. color: #635e5e;
  14. padding: 1em 6em;
  15. display: inline-table;
  16. font-size: 3em;
  17. }
  18. .U_Control_Lnav_body
  19. {
  20. width: 100%;
  21. height: 100%;
  22. /*background: url("img/bg.jpg");
  23. background-size: 200% 100%;
  24. background-repeat: no-repeat;
  25. background-position: -152px;*/
  26. background-color:#3a99ea;
  27. position: relative;
  28. }
  29. #U_Control_Lnav_tab
  30. {
  31. z-index: 999;
  32. }
  33. .U_Control_Lnav_content
  34. {
  35. position: absolute;
  36. bottom: 0;
  37. width: 100%;
  38. }
  39. .U_Control_Lnav_left
  40. {
  41. width: 100%;
  42. height: 9em;
  43. background-color:White;
  44. }
  45. .U_Control_Lnav_left a
  46. {
  47. position: relative;
  48. }
  49. .U_Control_Lnav_left a:before, .U_Control_Lnav_left a:after
  50. {
  51. content: "]";
  52. position: absolute;
  53. right: 0;
  54. transition: transform 0.3s,opacity 0.3s;
  55. opacity: 0;
  56. }
  57. .U_Control_Lnav_left a:after
  58. {
  59. right: -0.5em;
  60. transform: translateX(6em);
  61. }
  62. .U_Control_Lnav_left a:before
  63. {
  64. transform: translateX(-2em);
  65. }
  66. .U_Control_Lnav_left a:hover::after, .U_Control_Lnav_left a:hover::before
  67. {
  68. transform: translateX(0px);
  69. opacity: 1;
  70. }
  71. .U_Control_Lnav_touch
  72. {
  73. width: 100%;
  74. height: 100%;
  75. background:#e4dfdf;
  76. }
  77. .U_Control_Lnav_on
  78. {
  79. transition: left 0.3s;
  80. }
  81. #U_Control_Lnav_shade
  82. {
  83. background-color:#222;
  84. /*opacity:0.5;*/
  85. width: 100%;
  86. height: 100%;
  87. position: absolute;
  88. top: 0px;
  89. z-index:998;
  90. }
  91. #U_Control_Lnav_Test
  92. {
  93. width: 500px;
  94. height: 200px;
  95. border: 1px solid #fff;
  96. background-color: #3a99ea;
  97. position: absolute;
  98. top: 300px;
  99. left: 400px;
  100. color: white;
  101. font-size: 60px;
  102. text-align:center;
  103. line-height:200px;
  104. }