| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- /* Basic Classes */
- .display-none {
- display: none;
- }
- .row {
- flex-direction: row;
- }
- .column {
- flex-direction: column;
- }
- .flex-container {
- display: flex;
- }
- .grow {
- flex-grow: 1;
- }
- .horizontally-centered {
- justify-content: center;
- }
- .flex-end {
- justify-content: flex-end;
- }
- .hidden {
- visibility: hidden;
- }
- /* General Classes */
- .main {
- margin-top: 10px;
- padding-left: 25px;
- padding-right: 20px;
- }
- .title {
- margin: 10px 0px;
- font-size: 18px;
- }
- Button {
- cursor: link;
- }
- .anchor {
- color: #2196F3;
- padding: 0px;
- margin: 0px;
- background-color: transparent;
- border-width: 0px;
- }
- .classic-button {
- padding: 7px;
- margin-top: 10px;
- height: 30px;
- }
- Label {
- white-space: normal;
- }
- .alert-label {
- color: red;
- }
- .footer {
- position: absolute;
- margin: 20px 10px 0px 10px;
- bottom: 5px;
- }
- #privacyStatement {
- align-self: flex-start;
- }
|