File size: 1,762 Bytes
18a519f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
.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;
}