style.css 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. .login-index{
  2. width:320px;
  3. height:300px;
  4. position:absolute;
  5. top:50%;
  6. left:50%;
  7. margin-top:-150px; /* negative half of the height */
  8. margin-left:-160px;
  9. }
  10. .regist-index{
  11. width:455px;
  12. height:410px;
  13. position:absolute;
  14. top:50%;
  15. left:50%;
  16. margin-top:-205px; /* negative half of the height */
  17. margin-left:-225px;
  18. }
  19. .regist-index .panel-body > p{
  20. line-height:3em;
  21. }
  22. ul#category {
  23. width:600px;
  24. border:1px solid #ccc;
  25. -ms-border-radius:8px;
  26. -moz-border-radius:8px;
  27. -webkit-border-radius:8px;
  28. border-radius:8px;
  29. line-height:1.5em;
  30. padding:5px;
  31. margin:5px;
  32. }
  33. ul#category > li > ul {
  34. padding:0;
  35. }
  36. ul#category li .top {
  37. margin:5px;
  38. padding:5px;
  39. border:1px solid #ccc;
  40. -ms-border-radius:4px;
  41. -moz-border-radius:4px;
  42. -webkit-border-radius:4px;
  43. border-radius:4px;
  44. }
  45. ul#category li {
  46. list-style:none;
  47. }
  48. ul#category ul li .item {
  49. border:1px solid #ccc;
  50. border-radius:4px;
  51. line-height:1.5em;
  52. padding:5px;
  53. margin:5px;
  54. }
  55. ul#category ul li .item:hover {
  56. background-color:#eee;
  57. }
  58. ul#category ul li .more {
  59. cursor:pointer;
  60. padding:0 4px;
  61. border:1px solid #999;
  62. color:#999;
  63. margin:0 5px;
  64. }
  65. ul#category ul li input {
  66. width:6em;
  67. margin:0 5px;
  68. }
  69. ul#category ul li input.color {
  70. width:4em;
  71. }
  72. ul#category ul li input.distance {
  73. width:2em;
  74. }
  75. ul#category ul li input.order {
  76. width:2em;
  77. }
  78. ul#category .tool {
  79. float:right;
  80. }
  81. ul#category ul ul .tool .add {
  82. display:none;
  83. }
  84. ul#category ul ul {
  85. margin-left:1.8em;
  86. }