-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathstyle.css
76 lines (64 loc) · 1.05 KB
/
style.css
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
body {
font-size: 16px;
}
.flex-container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
/* 100vh - header height */
min-height: calc(100vh - 56px);
width: 100vw;
}
#expense-form, #transfer-form {
display: flex;
flex-direction: column;
align-items: center;
margin-top: 15px;
}
#authorize-button {
display: none;
margin: auto;
font-size: 1.5em;
}
.footer {
padding: 10px;
background: #424242;
color: #9e9e9e;
font-weight: 300 !important;
margin-top: 15px;
font-size: 12px;
}
.footer a {
color: white;
font-size: 12px;
}
#forms, #signout-button {
display: none;
}
#form-loader {
margin: auto;
}
.dropdown {
display: flex;
flex-direction: row;
justify-content: space-between;
width: 300px;
margin-bottom: 10px;
font-size: 14px;
}
.dropdown select {
margin-left: 10px;
flex-grow: 1;
max-width: 50%;
}
/* Material desing overrides */
.mdl-switch {
width: auto;
}
.mdl-layout__header-row {
padding-left: 20px;
}
.material-icons {
font-size: 14px;
}