couple.css 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232
  1. body{
  2. margin: 0;
  3. }
  4. /* login */
  5. .coupleItem {
  6. display: flex;
  7. height: 100%;
  8. justify-content: center;
  9. align-items: center;
  10. }
  11. .coupleForm {
  12. padding: 100px;
  13. box-shadow: #585858 1px 0 50px 2px;
  14. background: #fff;
  15. border: 1px solid #e7e7e7;
  16. }
  17. .form-control {
  18. display: block;
  19. width: 275px;
  20. height: 26px;
  21. padding: 6px 12px;
  22. font-size: 14px;
  23. line-height: 1.42857143;
  24. color: #555;
  25. background-color: #fff;
  26. background-image: none;
  27. border: 1px solid #ccc;
  28. border-radius: 4px;
  29. -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  30. box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  31. -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
  32. -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
  33. transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
  34. }
  35. .coupleItemInfo{
  36. display: block;
  37. height: 20px;
  38. padding: 10px 3px;
  39. color: #e4393c;
  40. font-size: 14px;
  41. }
  42. .loginSubmit{
  43. width: 100%;
  44. height: 30px;
  45. border-radius: 5px;
  46. border: 0;
  47. background: #5ea7fd;
  48. color: #fff;
  49. }
  50. /* login end */
  51. .informationtHeader{
  52. height: 30px;
  53. width: 100%;
  54. padding: 20px 0;
  55. display: inline-flex;
  56. background: #121b29;
  57. color: #fff;
  58. }
  59. .informationHeaderRight {
  60. position: absolute;
  61. right: 30px;
  62. top: 25px;
  63. font-size: 14px;
  64. }
  65. .informationHeaderRight>a{
  66. color: #fff;
  67. text-decoration: none;
  68. }
  69. .informationtHeaderLogo{
  70. margin-left: 18px;
  71. }
  72. .logoTitle {
  73. margin: 0;
  74. margin-left: 10px;
  75. line-height: 29px;
  76. font-weight: 400;
  77. font-size: 24px;
  78. }
  79. .aside {
  80. position: absolute;
  81. left: 0;
  82. z-index: 10000;
  83. width: 60px;
  84. height: 1000px;
  85. }
  86. .asideTitle{
  87. padding: 3px 10px;
  88. color: #fff;
  89. font-size: 18px;
  90. font-weight: 400;
  91. }
  92. .icon-2x {
  93. font-size: 2em;
  94. }
  95. .icon {
  96. position: relative;
  97. display: table-cell;
  98. width: 60px;
  99. height: 36px;
  100. text-align: center;
  101. vertical-align: middle;
  102. font-size:20px;
  103. }
  104. .asideMenu:hover,nav.asideMenu.expanded {
  105. width:250px;
  106. overflow:visible;
  107. }
  108. .asideMenu {
  109. background:#212121;
  110. border-right:1px solid #e5e5e5;
  111. position:absolute;
  112. top:0;
  113. bottom:0;
  114. height:100%;
  115. left:0;
  116. width:60px;
  117. overflow:hidden;
  118. -webkit-transition:width .05s linear;
  119. transition:width .05s linear;
  120. -webkit-transform:translateZ(0) scale(1,1);
  121. z-index:1000;
  122. }
  123. .asideMenu>ul {
  124. margin:7px 0;
  125. }
  126. .asideMenu li {
  127. position:relative;
  128. display:block;
  129. width:250px;
  130. }
  131. .asideMenu li>a {
  132. position:relative;
  133. display:table;
  134. border-collapse:collapse;
  135. border-spacing:0;
  136. color:#999;
  137. font-iconmily: arial;
  138. font-size: 14px;
  139. text-decoration:none;
  140. -webkit-transform:translateZ(0) scale(1,1);
  141. -webkit-transition:all .1s linear;
  142. transition:all .1s linear;
  143. }
  144. .asideMenu .nav-icon {
  145. position:relative;
  146. display:table-cell;
  147. width:60px;
  148. height:36px;
  149. text-align:center;
  150. vertical-align:middle;
  151. font-size:18px;
  152. }
  153. .asideMenu .asideItemText {
  154. position:relative;
  155. width:190px;
  156. display:table-cell;
  157. vertical-align:middle;
  158. }
  159. .no-touch .scrollable.hover {
  160. overflow-y:hidden;
  161. }
  162. .no-touch .scrollable.hover:hover {
  163. overflow-y:auto;
  164. overflow:visible;
  165. }
  166. a:hover,a:focus {
  167. text-decoration:none;
  168. }
  169. nav {
  170. -webkit-user-select:none;
  171. -moz-user-select:none;
  172. -ms-user-select:none;
  173. -o-user-select:none;
  174. user-select:none;
  175. }
  176. nav ul,nav li {
  177. outline:0;
  178. margin:0;
  179. padding:0;
  180. }
  181. .asideMenu li:hover>a,nav.asideMenu li.active>a,.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus,.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus,.no-touch .dashboard-page nav.dashboard-menu ul li:hover a,.dashboard-page nav.dashboard-menu ul li.active a {
  182. color:#fff;
  183. background-color:#5fa2db;
  184. }
  185. .asideArea {
  186. float: left;
  187. background: #e2e2e2;
  188. width: 100%;
  189. height: 100%;
  190. }
  191. .informationtBody {
  192. padding: 30px 0 0 80px;
  193. }
  194. .timeItem ,.delectInfo{
  195. width: 80px;
  196. height: 35px;
  197. margin: 0 10px;
  198. border: 0 solid transparent;
  199. border-radius: 4px;
  200. color: #fff;
  201. background: #3372e1;
  202. }
  203. .informationtInfo {
  204. padding: 40px 10px 0;
  205. }
  206. .informationtInfo .tbMain td{
  207. width: 100px;
  208. height: 60px;
  209. text-align: center;
  210. color: #333;
  211. font-size: 16px;
  212. border: 1px solid #c8dbff;
  213. }
  214. .informationtInfo .tbMain td:last-child{
  215. border: 0 solid transparent !important;
  216. }
  217. .informationtInfo .tbMain .infoTitle{
  218. background: #ebf2ff;
  219. }
  220. .informationtInfo .tbMain .trTitle{
  221. width: 300px;
  222. }
  223. .informationtInfo .tbMain .trContent{
  224. width: 500px;
  225. }
  226. .informationtInfo .tbMain .trCoupleTime{
  227. width: 150px;
  228. }
  229. .informationtInfo .tbMain .{
  230. width: 200px;
  231. }