SignInSignUp.uss 942 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. /* Basic Classes */
  2. .display-none {
  3. display: none;
  4. }
  5. .row {
  6. flex-direction: row;
  7. }
  8. .column {
  9. flex-direction: column;
  10. }
  11. .flex-container {
  12. display: flex;
  13. }
  14. .grow {
  15. flex-grow: 1;
  16. }
  17. .horizontally-centered {
  18. justify-content: center;
  19. }
  20. .flex-end {
  21. justify-content: flex-end;
  22. }
  23. .hidden {
  24. visibility: hidden;
  25. }
  26. /* General Classes */
  27. .main {
  28. margin-top: 10px;
  29. padding-left: 25px;
  30. padding-right: 20px;
  31. }
  32. .title {
  33. margin: 10px 0px;
  34. font-size: 18px;
  35. }
  36. Button {
  37. cursor: link;
  38. }
  39. .anchor {
  40. color: #2196F3;
  41. padding: 0px;
  42. margin: 0px;
  43. background-color: transparent;
  44. border-width: 0px;
  45. }
  46. .classic-button {
  47. padding: 7px;
  48. margin-top: 10px;
  49. height: 30px;
  50. }
  51. Label {
  52. white-space: normal;
  53. }
  54. .alert-label {
  55. color: red;
  56. }
  57. .footer {
  58. position: absolute;
  59. margin: 20px 10px 0px 10px;
  60. bottom: 5px;
  61. }
  62. #privacyStatement {
  63. align-self: flex-start;
  64. }