style.scss 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. @import url(https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap);
  2. @import url(https://fonts.googleapis.com/css2?family=Oswald:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap);
  3. $green: #76DE37;
  4. $blue: #5D7DF0;
  5. $red: #FF0000;
  6. $white: #FFF9F9;
  7. $background: #F4F4F4;
  8. $ashen: #C4C4C4;
  9. $grey: #39363D;
  10. $black: #181719;
  11. body {
  12. width: 100;
  13. }
  14. .start-btn{
  15. background-color: $green;
  16. border-radius: 18.82px;
  17. border: none;
  18. font-size: 24px;
  19. padding: 10px 30px;
  20. transition: box-shadow 0.25s ease;
  21. &:hover {
  22. box-shadow: 1px 1px 7px $blue;
  23. }
  24. }
  25. .close-btn{
  26. background-color: $grey;
  27. border-radius: 18.82px;
  28. border: none;
  29. font-size: 24px;
  30. padding: 10px 30px;
  31. color:$white;
  32. transition: box-shadow 0.25s ease;
  33. &:hover {
  34. box-shadow: 1px 1px 7px $grey;
  35. }
  36. }
  37. .Name-inp{
  38. border-radius: 7px;
  39. padding: 7px 20px;
  40. background-color: $white;
  41. font-size: 15px;
  42. color: $grey;
  43. border-width: 1px;
  44. border-color: $black;
  45. }
  46. .Mail-inp{
  47. border-radius: 7px;
  48. padding: 7px 20px;
  49. background-color: $white;
  50. font-size: 15px;
  51. color: $grey;
  52. border-width: 1px;
  53. border-color: $black;
  54. }
  55. .Pass-inp{
  56. border-radius: 7px;
  57. padding: 7px 20px;
  58. background-color: $white;
  59. font-size: 15px;
  60. color: $grey;
  61. border-width: 1px;
  62. border-color: $black;
  63. }
  64. .input-icon{
  65. position: relative;
  66. display: inline-block;
  67. }
  68. .icon-inside{
  69. position: absolute;
  70. z-index: 1;
  71. transform: translate(0, -50%);
  72. width: 8%;
  73. top: 50%;
  74. right: 15px;
  75. path{
  76. fill: $black;
  77. }
  78. }