styles.css 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. h1 {
  2. top: 0;
  3. left: 0;
  4. margin: 10vh;
  5. font: bold 18px Arial;
  6. color: #595;
  7. margin-top: 25px;
  8. }
  9. body {
  10. display: flex;
  11. flex-direction: column;
  12. }
  13. .block {
  14. align-items: center;
  15. justify-content: space-between;
  16. flex-wrap: wrap;
  17. width: 100%;
  18. text-align: center;
  19. border: 1px solid rgb(121, 121, 121);
  20. }
  21. #colorChange {
  22. height: 50%;
  23. width: 100%;
  24. }
  25. img {
  26. width: 10%;
  27. margin: 10vh;
  28. }
  29. #formContainer {
  30. display: flex;
  31. align-items: center;
  32. justify-content: center;
  33. }
  34. input {
  35. padding: 0 20px;
  36. margin-bottom: 10px;
  37. background: #3b3f44;
  38. color: white;
  39. line-height: 40px;
  40. border-width: 0;
  41. border-radius: 20px;
  42. font-family: "Roboto", sans-serif;
  43. }
  44. button {
  45. text-decoration: none;
  46. display: inline-block;
  47. width: 140px;
  48. height: 45px;
  49. line-height: 45px;
  50. border-radius: 45px;
  51. margin: 10px 20px;
  52. font-family: "Montserrat", sans-serif;
  53. font-size: 11px;
  54. text-transform: uppercase;
  55. text-align: center;
  56. letter-spacing: 3px;
  57. font-weight: 600;
  58. color: #524f4e;
  59. background: white;
  60. box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  61. transition: 0.3s;
  62. }
  63. #showhide {
  64. position: relative;
  65. width: 17px;
  66. height: 17px;
  67. margin: 0 3px 0 0;
  68. cursor: pointer;
  69. }