couple.css 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276
  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. .informationtPermissions, .informationtAddUser, .informationtcreateItem {
  70. display: none;
  71. margin: 30px 15px 0 80px;
  72. padding: 0 20px;
  73. background: #fff;
  74. color: #000;
  75. transition: all .4s linear;
  76. box-shadow: 2px 2px 13px #acacac;
  77. -moz-box-shadow: 2px 2px 13px #acacac;
  78. -webkit-box-shadow: 2px 2px 13px #acacac;
  79. }
  80. .informationtcreateItem form{
  81. padding: 30px;
  82. }
  83. .informationtcreateItem input {
  84. width: 100%;
  85. border: 1px solid #eee;
  86. height: 35px;
  87. border-radius: 3px;
  88. margin: 10px 0;
  89. padding: 4px;
  90. resize: none;
  91. }
  92. .permissionsHead, .AddUserHead {
  93. padding: 15px 0;
  94. border-bottom: 1px solid #e1e1e1;
  95. }
  96. .AddItem{
  97. float: right;
  98. width: 65px;
  99. height: 35px;
  100. background: #3372e1;
  101. color: #fff;
  102. border: 0px solid transparent;
  103. border-radius: 4px;
  104. }
  105. .informationtSet{
  106. display: none;
  107. padding-right: 20px;
  108. }
  109. .informationtHeaderLogo{
  110. margin-left: 18px;
  111. }
  112. .logoTitle {
  113. margin: 0;
  114. margin-left: 10px;
  115. line-height: 29px;
  116. font-weight: 400;
  117. font-size: 24px;
  118. }
  119. .aside {
  120. position: absolute;
  121. left: 0;
  122. z-index: 10000;
  123. width: 60px;
  124. height: 1000px;
  125. }
  126. .icon-2x {
  127. font-size: 2em;
  128. }
  129. .icon {
  130. position: relative;
  131. display: table-cell;
  132. width: 60px;
  133. height: 36px;
  134. text-align: center;
  135. vertical-align: middle;
  136. font-size:20px;
  137. }
  138. .asideMenu:hover,nav.asideMenu.expanded {
  139. width:250px;
  140. overflow:visible;
  141. }
  142. .asideMenu {
  143. background: #212121;
  144. border-right: 1px solid #e5e5e5;
  145. position: fixed;
  146. top: 70px;
  147. bottom: 0;
  148. height: 100%;
  149. left: 0;
  150. width: 60px;
  151. overflow: hidden;
  152. -webkit-transition: width .05s linear;
  153. transition: width .05s linear;
  154. -webkit-transform: translateZ(0) scale(1,1);
  155. z-index: 1000;
  156. }
  157. .asideMenu>ul {
  158. margin:7px 0;
  159. }
  160. .asideMenu li {
  161. position:relative;
  162. display:block;
  163. width:250px;
  164. }
  165. .asideMenu li>a {
  166. position:relative;
  167. display:table;
  168. border-collapse:collapse;
  169. border-spacing:0;
  170. color:#999;
  171. font-iconmily: arial;
  172. font-size: 14px;
  173. text-decoration:none;
  174. -webkit-transform:translateZ(0) scale(1,1);
  175. -webkit-transition:all .1s linear;
  176. transition:all .1s linear;
  177. }
  178. .asideMenu .nav-icon {
  179. position:relative;
  180. display:table-cell;
  181. width:60px;
  182. height:36px;
  183. text-align:center;
  184. vertical-align:middle;
  185. font-size:18px;
  186. }
  187. .asideMenu .asideItemText {
  188. position:relative;
  189. width:190px;
  190. display:table-cell;
  191. vertical-align:middle;
  192. }
  193. .no-touch .scrollable.hover {
  194. overflow-y:hidden;
  195. }
  196. .no-touch .scrollable.hover:hover {
  197. overflow-y:auto;
  198. overflow:visible;
  199. }
  200. a:hover,a:focus {
  201. text-decoration:none;
  202. }
  203. nav {
  204. -webkit-user-select:none;
  205. -moz-user-select:none;
  206. -ms-user-select:none;
  207. -o-user-select:none;
  208. user-select:none;
  209. }
  210. nav ul,nav li {
  211. outline:0;
  212. margin:0;
  213. padding:0;
  214. }
  215. .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 {
  216. color:#fff;
  217. background-color:#5fa2db;
  218. }
  219. .asideArea {
  220. float: left;
  221. background: #e2e2e2;
  222. width: 100%;
  223. height: 100%;
  224. }
  225. .informationtBody {
  226. padding: 30px 0 0 80px;
  227. }
  228. .timeItem ,.delectInfo, .setInfo, .addUser,.btnAdd, .createItem{
  229. width: 80px;
  230. height: 35px;
  231. margin-right: 10px;
  232. border: 0 solid transparent;
  233. border-radius: 4px;
  234. color: #fff;
  235. background: #3372e1;
  236. }
  237. .informationtTitle{
  238. display: inline-block;
  239. }
  240. .informationtInfo {
  241. padding: 40px 10px;
  242. }
  243. .informationtInfo .tbMain td{
  244. width: 100px;
  245. height: 60px;
  246. text-align: center;
  247. color: #333;
  248. font-size: 16px;
  249. border: 1px solid #c8dbff;
  250. }
  251. .informationtInfo .tbMain td:last-child{
  252. border: 0 solid transparent !important;
  253. }
  254. .informationtInfo .tbMain .infoTitle{
  255. background: #ebf2ff;
  256. }
  257. .informationtInfo .tbMain .trTitle{
  258. width: 300px;
  259. }
  260. .informationtInfo .tbMain .trContent{
  261. width: 500px;
  262. }
  263. .informationtInfo .tbMain .trCoupleTime{
  264. width: 150px;
  265. }
  266. .permissionsMembers .tbMain tr, .informationtAddUser .tbMain tr{
  267. height: 50px;
  268. }
  269. .permissionsMembers .tbMain tr td, .informationtAddUser .tbMain tr td{
  270. padding-right: 30px;
  271. }
  272. .NoPowerMembers {
  273. padding-left: 10px;
  274. color: #cf0a0a;
  275. font-size: 18px;
  276. }