indexstyle.css 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. body{
  2. width:95%;
  3. height:95%;
  4. background-attachment:fixed;
  5. background-repeat: repeat;
  6. background-image: url("../img/loginbackground1.png");
  7. }
  8. .container{
  9. width:420px;
  10. height:500px;
  11. text-align: center;
  12. background-color:rgba(0, 26, 0, 0.5);
  13. border-radius: 4px;
  14. margin: 0 auto;
  15. margin-top: 50px;
  16. }
  17. p{
  18. color:#ffd34b;
  19. font-weight: bold;
  20. font-size: 30px;
  21. margin-top: 0px;
  22. }
  23. input[type="text"],input[type="password"]{
  24. width: 300px;
  25. height: 45px;
  26. font-size: 18px;
  27. margin-bottom: 20px;
  28. background-color: #fff;
  29. padding-left: 30px;
  30. -webkit-border-radius:5px;
  31. -o-border-radius:5px;
  32. -moz-border-radius:5px;
  33. }
  34. .checkbox{
  35. color:#80d4ff;
  36. padding-right: 230px;
  37. padding-bottom: 10px;
  38. }
  39. .btn-login{
  40. padding: 15px 30px;
  41. color: #073B24;
  42. border-radius:4px;
  43. border: none;
  44. background-color: #78D9C0;
  45. border-bottom:4px solid #227963;
  46. margin-bottom: 20px;
  47. }
  48. .btn-login:hover{
  49. background-color:#3aaf85;
  50. }
  51. a{
  52. color:#fff;
  53. }
  54. .footer{
  55. position:relative;
  56. margin-top:50px;
  57. clear:both;
  58. width:100%;
  59. height:100px;
  60. bottom:0;
  61. text-align:center;
  62. }
  63. h5{
  64. color: #4d4d4d;
  65. font-size: 14px;
  66. font-family: "新細明體", "Times New Roman";
  67. }