Forms.scss 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. .forms {
  2. background-color: #131341;
  3. width: fit-content;
  4. margin: 0 auto;
  5. padding: 2%;
  6. font-size: large;
  7. border-radius: 5%;
  8. box-shadow: 0 0 15px black;
  9. &__link {
  10. font-size: medium;
  11. display: block;
  12. text-decoration: none;
  13. border-left: 5px solid #05f09b;
  14. background-color: #100d23;
  15. color: #05f09b;
  16. margin: 5px;
  17. padding: 5px;
  18. &:hover {
  19. background-color: #323151;
  20. }
  21. }
  22. &__input {
  23. display: block;
  24. font-size: x-large;
  25. border-style: none;
  26. outline: none;
  27. background: transparent;
  28. margin: 5% 0 0 0;
  29. border-bottom: 2px solid gray;
  30. color: #83d6f6;
  31. &:focus {
  32. border-bottom: 2px solid #05f09b;
  33. color: #05f09b;
  34. }
  35. &:disabled {
  36. &::placeholder { color: rgba(128, 128, 128, 0.274); }
  37. border-color: rgba(128, 128, 128, 0.274);
  38. }
  39. }
  40. &__button {
  41. display: block;
  42. margin: 0 auto;
  43. margin-top: 10px;
  44. font-size: large;
  45. padding: 3%;
  46. background: transparent;
  47. border-style: none;
  48. border: 1px solid;
  49. &:active {
  50. background-color: #0e6147;
  51. }
  52. &:disabled {
  53. color: grey;
  54. border-color: #0e6147;
  55. }
  56. }
  57. }