admin_style.css 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. /* Basic Grey */
  2. .basic-grey {
  3. margin-left:auto;
  4. margin-right:auto;
  5. max-width: 500px;
  6. background: #F7F7F7;
  7. padding: 25px 15px 25px 10px;
  8. font: 12px Georgia, "Times New Roman", Times, serif;
  9. color: #888;
  10. text-shadow: 1px 1px 1px #FFF;
  11. border:1px solid #E4E4E4;
  12. }
  13. .basic-grey h1 {
  14. font-size: 25px;
  15. padding: 0px 0px 10px 40px;
  16. display: block;
  17. border-bottom: 1px solid #E4E4E4;
  18. margin: -10px -15px 30px -10px;;
  19. color: #888;
  20. }
  21. .basic-grey input[type="text"], .basic-grey textarea {
  22. border: 1px solid #DADADA;
  23. color: #888;
  24. height: 30px;
  25. margin-bottom: 16px;
  26. margin-right: 6px;
  27. margin-top: 2px;
  28. outline: 0 none;
  29. padding: 3px 3px 3px 5px;
  30. width: 70%;
  31. font-size: 12px;
  32. line-height:15px;
  33. box-shadow: inset 0px 1px 4px #ECECEC;
  34. -moz-box-shadow: inset 0px 1px 4px #ECECEC;
  35. -webkit-box-shadow: inset 0px 1px 4px #ECECEC;
  36. }
  37. .basic-grey input[type="password"]{
  38. border: 1px solid #DADADA;
  39. color: #888;
  40. height: 30px;
  41. margin-bottom: 16px;
  42. margin-right: 6px;
  43. margin-top: 2px;
  44. outline: 0 none;
  45. padding: 3px 3px 3px 5px;
  46. width: 70%;
  47. font-size: 12px;
  48. line-height:15px;
  49. box-shadow: inset 0px 1px 4px #ECECEC;
  50. -moz-box-shadow: inset 0px 1px 4px #ECECEC;
  51. -webkit-box-shadow: inset 0px 1px 4px #ECECEC;
  52. }
  53. .basic-grey textarea{
  54. padding: 5px 3px 3px 5px;
  55. font-size: 12px;
  56. height: 500px;
  57. }
  58. .basic-grey select {
  59. background: #FFF no-repeat right;
  60. background: #FFF no-repeat right;
  61. appearance:none;
  62. -webkit-appearance:none;
  63. -moz-appearance: none;
  64. text-indent: 0.01px;
  65. text-overflow: '';
  66. width: 70%;
  67. height: 35px;
  68. line-height: 25px;
  69. }
  70. .basic-grey textarea{
  71. height:100px;
  72. }
  73. .basic-grey .button {
  74. background: #E27575;
  75. border: none;
  76. padding: 10px 25px 10px 25px;
  77. color: #FFF;
  78. box-shadow: 1px 1px 5px #B6B6B6;
  79. border-radius: 3px;
  80. text-shadow: 1px 1px 1px #9E3F3F;
  81. cursor: pointer;
  82. }
  83. .basic-grey .button:hover {
  84. background: #CF7A7A
  85. }