login.css 857 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. input[type='email'], input[type='password'] {
  2. width: 100%;
  3. }
  4. .row {
  5. padding: 4px;
  6. }
  7. .row .col {
  8. display: inline-block;
  9. white-space: nowrap;
  10. }
  11. .row .col.col-3 {
  12. width: 25%;
  13. }
  14. .row .col.col-4 {
  15. width: 33%;
  16. }
  17. .row .col.col-6 {
  18. width: 50%;
  19. }
  20. .row .col.col-8 {
  21. width: 66%;
  22. }
  23. .row .col.col-9 {
  24. width: 75%;
  25. }
  26. .row .col .col-12 {
  27. width: 100%;
  28. }
  29. .login-close {
  30. position: absolute;
  31. right: 0;
  32. top: 0;
  33. padding: 8px;
  34. font-family: sans-serif;
  35. }
  36. .login-close:hover {
  37. color: gray;
  38. cursor: pointer;
  39. }
  40. .error {
  41. color: red;
  42. }
  43. #login-container {
  44. background-color: white;
  45. width: 50%;
  46. height: 25%;
  47. text-align: center;
  48. border-radius: 15px;
  49. margin-left: 25%;
  50. margin-top: 25%;
  51. min-width: 240px;
  52. position: absolute;
  53. top: 0;
  54. left: 0;
  55. padding: 15px;
  56. }