_signPage.scss 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. .sign {
  2. &-form {
  3. // background: $color-lightgrey-transparent;
  4. font-size: 18px;
  5. font-family: 'Poiret One', cursive;
  6. font-weight: bold;
  7. display: block;
  8. margin: auto;
  9. border: 3px solid $color-lightgrey;
  10. outline: 1px solid $color-grey;
  11. padding: 25px;
  12. width: 45%;
  13. @media screen and (max-width: 480px) {
  14. width: 75%;
  15. }
  16. text-align: center;
  17. &__input,
  18. &__submit-button {
  19. width: 80%;
  20. }
  21. &__header {
  22. margin: 0 0 35px 0;
  23. }
  24. &__password-container {
  25. margin: 50px 0 20px 0;
  26. }
  27. &__input {
  28. display: block;
  29. margin: 25px auto;
  30. border: 1px solid $color-lightgrey;
  31. padding: 15px;
  32. box-shadow: 0 0 3px $color-grey;
  33. &--login {}
  34. &--password {}
  35. }
  36. &__input::placeholder {
  37. font-family: 'Poiret One', cursive;
  38. font-size: 18px;
  39. font-weight: bold;
  40. }
  41. &__submit-button {
  42. }
  43. &__link {
  44. &--with-margin {
  45. margin-bottom: 20px;
  46. }
  47. &--sign-up a{
  48. color: $color-green;
  49. text-transform: uppercase;
  50. transition: all 100ms ease-in-out;
  51. }
  52. &--sign-up a:hover{
  53. font-size: 23px;
  54. }
  55. }
  56. &__divider {
  57. width: 60%;
  58. }
  59. }
  60. }