123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140 |
- .collapse {
- display: none;
- }
-
- .hide {
- visibility: hidden;
- }
-
- .row {
- flex-direction: row;
- }
-
- .row-reverse {
- flex-direction: row-reverse;
- }
-
- .column {
- flex-direction: column;
- }
-
- .flex-container {
- display: flex;
- }
-
- .grow {
- flex-grow: 1;
- }
-
- .grow-max {
- flex-grow: 10;
- }
-
- .parent-vertical-center{
- width: 100%;
- height: 100%;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- }
-
- .elements-vertical-center{
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- }
-
- .horizontally-centered {
- justify-content: center;
- }
-
- .align-end {
- justify-content: flex-end;
- }
-
- .align-center{
- justify-content: center;
- }
-
- .align-vertical-center{
- flex-direction: row;
- align-items: center;
- }
-
- .align-start {
- justify-content: flex-start;
- }
-
- .main {
- margin-top: 10px;
- padding-left: 25px;
- padding-right: 20px;
- }
-
- .title {
- margin: 10px 0px;
- font-size: 18px;
- }
-
- .error {
- color: #FF0000;
- }
-
- .anchor {
- color: #2196F3;
- padding: 0px;
- margin: 0px;
- background-color: transparent;
- border-width: 0px;
- }
-
- .classic-button {
- padding: 7px;
- margin-top: 10px;
- height: 30px;
- }
-
- .alert-label {
- color: red;
- }
-
- .footer {
- position: absolute;
- margin: 20px 10px 0px 10px;
- bottom: 5px;
- }
-
- .container {
- padding: 10px;
- border-bottom-width: 1px;
- border-bottom-color: #999999;
- }
-
- .container.last {
- border-bottom-width: 0px;
- }
-
- .sub-section {
- margin-left: 10px;
- }
-
- Button {
- cursor: link;
- }
-
- Label {
- white-space: normal;
- }
-
- TextField {
- margin-left: 0px;
- margin-top: 3px;
- margin-right: 10px;
- margin-bottom: 3px;
- }
-
- Toggle {
- margin-left: 0px;
- }
|