style.css 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. *{margin:0;padding:0;font-family:'Saira',sans-serif;}
  2. body{
  3. display: flex;
  4. justify-content: center;
  5. align-items: center;
  6. height: 100vh;
  7. background: rgb(201, 201, 201);
  8. }
  9. form{
  10. display: flex;
  11. flex-direction: column;
  12. border: 1px solid black;
  13. padding: 25px;
  14. background: white;
  15. max-width: 500px;
  16. }
  17. form > *{
  18. margin: 15px;
  19. }
  20. form p{
  21. font-size: 12px;
  22. color: rgb(85, 85, 85);
  23. }
  24. input[type=submit]{
  25. background: rgb(0, 27, 45);
  26. border: none;
  27. text-decoration: none;
  28. padding: 10px 25px;
  29. color: white;
  30. cursor: pointer;
  31. text-align: center;
  32. font-size: 15px;
  33. min-width: 100px;
  34. margin: 5px;
  35. max-height: 52px;
  36. }
  37. input[type=submit]:hover{
  38. background: rgb(179, 191, 209);
  39. color:black;
  40. }
  41. input[type=submit]:active{
  42. background: rgb(240, 252, 255);
  43. }
  44. a{
  45. display: initial;
  46. background: rgb(255, 99, 107);
  47. border: none;
  48. text-decoration: none;
  49. padding: 10px 25px;
  50. color: black;
  51. cursor: pointer;
  52. text-align: center;
  53. font-size: 15px;
  54. min-width: 100px;
  55. margin: 5px;
  56. max-height: 52px;
  57. }
  58. a:hover{
  59. background: rgb(255, 129, 137);
  60. }
  61. a:active{
  62. background: rgb(240, 252, 255);
  63. }