-
Notifications
You must be signed in to change notification settings - Fork 2
/
style.css
91 lines (70 loc) · 1.11 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
html, body {
margin: 0;
padding: 0;
}
body {
font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
}
html.loading,
html.loading body {
height: 100%;
}
html.loading body {
display: flex;
justify-content: center;
align-items: center;
}
html.loading #app {
display: none;
}
#loader {
display: none;
margin: auto;
}
html.loading #loader {
display: block;
}
h1 {
text-align: center;
padding: 25px 0;
}
.month {
margin: 15px;
padding: 15px;
background-color: #f5f5f5;
cursor: pointer;
}
.month:hover {
background-color: #e5e5e5;
}
.month-description {
font-weight: bold;
}
.delta-indicator-no-change {
color: gray;
}
.delta-indicator-increase {
color: green;
}
.delta-indicator-decrease {
color: red;
}
.fade-enter-active, .fade-leave-active {
transition: opacity .5s;
}
.fade-enter, .fade-leave-to /* .fade-leave-active em versões anteriores a 2.1.8 */ {
opacity: 0;
}
.month .details {
background-color: white;
margin-top: 10px;
}
.month .details table {
margin-bottom: 0;
}
.amount-column {
width: 200px;
}
.negative-amount {
color: red;
}