couple.css 5.9 KB

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