style.css 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. body {
  2. margin: 0;
  3. overflow: hidden;
  4. }
  5. #inputpage {
  6. width: 100%;
  7. height: 100%;
  8. top: 0px;
  9. left: 0px;
  10. position: absolute;
  11. display: table;
  12. }
  13. #inputpage #middle {
  14. display: table-cell;
  15. vertical-align: middle;
  16. }
  17. #inputpage div {
  18. width: 200px;
  19. margin: auto auto;
  20. padding: 20px 20px 20px 20px;
  21. font-weight: 400;
  22. background: #fff;
  23. border: 1px solid #e5e5e5;
  24. -webkit-box-shadow: rgba(200,200,200,.7) 0 4px 10px -1px;
  25. box-shadow: rgba(200,200,200,.7) 0 4px 10px -1px;
  26. border-radius:5px;
  27. border-color: #f0f0f0;
  28. border-bottom-color: #f0f0f0;
  29. }
  30. #middle div p {
  31. }
  32. #middle div .tagzone {
  33. width: 100%;
  34. height: 25px;
  35. margin-bottom: 10px;
  36. }
  37. #middle label {
  38. color: #777;
  39. font-size: 14px;
  40. display:inline-block;
  41. width: 20%;
  42. }
  43. #middle div .input, .login input[type=text] {
  44. color: #555;
  45. font-weight: 200;
  46. font-size: 14px;
  47. line-height: 1;
  48. width: 60%;
  49. height: 20px;
  50. margin-right: 6px;
  51. margin-bottom: 16px;
  52. border: 1px solid #e5e5e5;
  53. background: #fbfbfb;
  54. outline: 0;
  55. -webkit-box-shadow: inset 1px 1px 2px rgba(200,200,200,.2);
  56. box-shadow: inset 1px 1px 2px rgba(200,200,200,.2);
  57. display:inline-block;
  58. border-radius:5px;
  59. }
  60. #name_submit {
  61. display:inline-block;
  62. float: right;
  63. height: 22px;
  64. }