style.css 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. body{
  2. margin: 0;
  3. font-family: Calibri, sans-serif;
  4. padding: 0;
  5. }
  6. .container {
  7. height: 350px;
  8. display: flex;
  9. justify-content: center;
  10. align-items: center;
  11. flex-direction: column;
  12. background-color: lightskyblue;
  13. }
  14. .container-for-login, .container-for-password, .container-for-buttons {
  15. margin: 5px;
  16. }
  17. .out {
  18. margin-top: 5px;
  19. display: flex;
  20. width: 200px;
  21. text-align: center;
  22. }
  23. .button, .button-clear, .button-push, .out-1, .out-2{
  24. border-radius: 3px;
  25. cursor: pointer;
  26. background-color: white;
  27. height: 25px;
  28. width: 80px;
  29. font-size: 12px;
  30. margin: 5px;
  31. border: 0;
  32. }
  33. .button:hover, .button-clear:hover, .button-push:hover, .out-1:hover, .out-2:hover{
  34. border-radius: 3px;
  35. cursor: pointer;
  36. background-color: white;
  37. height: 25px;
  38. width: 80px;
  39. font-size: 12px;
  40. margin: 5px;
  41. border: 1px solid black;
  42. }
  43. .button-clear{
  44. cursor: pointer;
  45. background-color: white;
  46. }
  47. .input-password, .input-login, .input-1 {
  48. border: 1px solid gray;
  49. border-radius: 3px;
  50. height: 25px;
  51. font-size: 16px;
  52. display: block;
  53. margin-top:5px;
  54. }
  55. .label-login, .label-number, .label-password{
  56. color: black;
  57. font-size: 18px;
  58. }
  59. .container-1{
  60. height: 300px;
  61. background-color: pink;
  62. display: flex;
  63. justify-content: center;
  64. flex-direction: column;
  65. align-items: center;
  66. }
  67. .container-for-input{
  68. margin-bottom: 20px;
  69. display: flex;
  70. flex-direction: column;
  71. }
  72. .container-for-button{
  73. display: flex;
  74. justify-content: center;
  75. }