loginstyle.css 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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:480px;
  10. height:450px;
  11. text-align: center;
  12. background-color:rgba(0, 26, 0, 0.5);
  13. border-radius: 4px;
  14. margin: 0 auto;
  15. margin-top: 250px;
  16. }
  17. .container img{
  18. width: 350px;
  19. height: 150px;
  20. margin-top: -180px;
  21. margin-bottom: 60px;
  22. }
  23. p{
  24. color:#ffd34b;
  25. font-weight: bold;
  26. font-size: 30px;
  27. margin-top: 0px;
  28. }
  29. input[type="text"],input[type="password"]{
  30. width: 300px;
  31. height: 45px;
  32. font-size: 18px;
  33. margin-bottom: 20px;
  34. background-color: #fff;
  35. padding-left: 30px;
  36. -webkit-border-radius:5px;
  37. -o-border-radius:5px;
  38. -moz-border-radius:5px;
  39. }
  40. .checkbox{
  41. color:#80d4ff;
  42. padding-right: 230px;
  43. padding-bottom: 10px;
  44. }
  45. .btn-login{
  46. padding: 15px 30px;
  47. color: #073B24;
  48. border-radius:4px;
  49. border: none;
  50. background-color: #78D9C0;
  51. border-bottom:4px solid #227963;
  52. margin-bottom: 20px;
  53. }
  54. .btn-login:hover{
  55. background-color:#3aaf85;
  56. }
  57. a{
  58. color:#fff;
  59. }
  60. .footer{
  61. position:relative;
  62. margin-top:50px;
  63. clear:both;
  64. width:100%;
  65. height:100px;
  66. bottom:0;
  67. text-align:center;
  68. }
  69. h5{
  70. color: #4d4d4d;
  71. font-size: 14px;
  72. font-family: "新細明體", "Times New Roman";
  73. }