login.css 899 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. label, input {
  2. display: block;
  3. }
  4. * {
  5. font-family: Verdana, sans-serif;
  6. }
  7. html, body {
  8. height: 100%;
  9. margin: 0;
  10. -webkit-app-region: drag;
  11. }
  12. .login-form {
  13. height: 100%;
  14. display: flex;
  15. flex-direction: column;
  16. justify-content: center;
  17. align-items: center;
  18. }
  19. .login-form > div {
  20. margin-bottom: 30px;
  21. }
  22. .login-form > div > label {
  23. margin-bottom: 25px;
  24. letter-spacing: 5px;
  25. font-weight: 100;
  26. text-transform: uppercase;
  27. font-size: 18px;
  28. text-align: center;
  29. color: rgba(0, 0, 0, 0.7);
  30. }
  31. .login-form > div > input {
  32. height: 30px;
  33. width: 225px;
  34. font-size: 16px;
  35. -webkit-app-region: no-drag;
  36. }
  37. .login-form > div > button {
  38. border: 0;
  39. font-size: 15px;
  40. font-weight: 100;
  41. text-transform: uppercase;
  42. height: 35px;
  43. width: 225px;
  44. background-color: #2196F3;
  45. color: white;
  46. -webkit-app-region: no-drag;
  47. }
  48. button:hover {
  49. background-color: #0D47A1;
  50. }