-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
160 lines (135 loc) · 2.59 KB
/
Copy pathstyles.css
File metadata and controls
160 lines (135 loc) · 2.59 KB
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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
#signInName {
font-weight: bold;
font-size: large;
color: white;
font-family: 'Caveat', cursive;
}
.nav {
color: white;
font-weight: bold;
font-size: x-large;
font-family: 'Caveat', cursive;
}
.tx-alert {
position: fixed;
top: 65%;
left:15%;
width: 65%;
}
#id_timeline {
background-color: #007bff;
color: white;
font-weight: bold;
font-size: small;
}
#span_loading {
color: white;
font-weight: bold;
font-size: large;
}
/* This is to remove the 'clicked' feeling for the button as its showing the values in other color */
.btn-warning:hover {
background-color: #ffc107;
border-color: #ffc107;
}
#btn_total_exp {
font-weight: bold;
color: white;
/* font-family: 'Caveat', cursive; */
font-size: large;
/* This is to make it stick on the top rather than start scrolling out of screen*/
position: -webkit-sticky;
position: sticky;
top: 5px;
/* without this the details table is going over this button */
z-index: 90;
}
sup, sub {
font-size: x-large;
color: white;
font-family: 'Caveat', cursive;
}
/* this removes the ugly colow of the balance button when clicked. */
.btn:focus {
outline: none;
}
#div_total_exp, #expense_details, .google-visualization-table-td {
align-items: center;
justify-content: center;
}
#add_expense {
position: fixed;
bottom: 15%;
right: 10%;
height: 30px;
width: 30px;
z-index: 99;
fill-opacity: 0.4;
font-size: 40px;
color: orange;
}
#add_expense:hover {
color: orangered;
cursor: pointer;
fill-opacity: 1;
transform: scale(1.1);
}
nav > a {
font-weight: bold;
color: orange;
}
/* Sets the maximum height of the entire modal to 95% of the screen height */
.modal-content {
max-height: 80vh;
}
/*Sets the maximum height of the modal body to 90% of the screen height*/
.modal-body {
max-height: 75vh;
overflow: scroll;
padding-top: 0px;
padding-right: 1rem;
padding-bottom: 0px;
padding-left: 1rem;
}
.icon-tx-type {
width: 25px;
}
.icon-sodexo {
width: 30px;
}
.icon-tx-category {
font-size: 20px;
}
.icon-daily-needs {
color: #e83e8c;
}
.icon-transport {
color: #007bff;
}
.icon-home-maintainance {
color: #ffc107;
}
.icon-health {
color: #28a745;
}
.icon-eating-out {
color: #6f42c1;
}
.icon-entertainment {
color: #20c997;
}
.icon-outstation {
color: #d4d10e;
}
.icon-clothing {
color: #6610f2;
}
.icon-office {
color: #6c757d;
}
.icon-binami {
color: #f76707;
}
.icon-others {
color: #343a40;
}