123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- @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);
- @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);
- $green: #76DE37;
- $blue: #5D7DF0;
- $red: #FF0000;
- $white: #FFF9F9;
- $background: #F4F4F4;
- $ashen: #C4C4C4;
- $grey: #39363D;
- $black: #181719;
- body {
- width: 100;
- }
- .start-btn{
- background-color: $green;
- border-radius: 18.82px;
- border: none;
- font-size: 24px;
- padding: 10px 30px;
- transition: box-shadow 0.25s ease;
- &:hover {
- box-shadow: 1px 1px 7px $blue;
- }
- }
- .close-btn{
- background-color: $grey;
- border-radius: 18.82px;
- border: none;
- font-size: 24px;
- padding: 10px 30px;
- color:$white;
- transition: box-shadow 0.25s ease;
- &:hover {
- box-shadow: 1px 1px 7px $grey;
- }
- }
- .Name-inp{
- border-radius: 7px;
- padding: 7px 20px;
- background-color: $white;
- font-size: 15px;
- color: $grey;
- border-width: 1px;
- border-color: $black;
- }
- .Mail-inp{
- border-radius: 7px;
- padding: 7px 20px;
- background-color: $white;
- font-size: 15px;
- color: $grey;
- border-width: 1px;
- border-color: $black;
- }
- .Pass-inp{
- border-radius: 7px;
- padding: 7px 20px;
- background-color: $white;
- font-size: 15px;
- color: $grey;
- border-width: 1px;
- border-color: $black;
- }
- .input-icon{
- position: relative;
- display: inline-block;
- }
- .icon-inside{
- position: absolute;
- z-index: 1;
- transform: translate(0, -50%);
- width: 8%;
- top: 50%;
- right: 15px;
- path{
- fill: $black;
- }
- }
|