-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathstyle.css
81 lines (65 loc) · 1.07 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
body {
margin-top: 10px;
font-family: "Source Sans Pro", sans-serif;
}
.home-page {
max-width: 800px;
}
.home-page .jumbotron {
padding-top: 5px;
padding-bottom: 15px;
}
.home-page .jumbotron h1 {
margin-top: 0;
}
.screenshot {
max-width: 100%;
}
.nav > li > a {
padding: 5px;
}
.panel, .list-group {
margin-bottom: 10px;
}
.panel-heading {
padding: 5px 10px;
}
.panel-body {
padding: 5px;
}
.transaction-date, .transaction-amount {
width: 80px;
}
.filters li {
display: inline;
}
.filters .label {
font-size: 85%;
border-radius: 0;
}
.filter .label {
cursor: pointer;
}
.filter .label:first-child {
border-top-left-radius: 3px;
border-bottom-left-radius: 3px;
}
.filter .label:last-child {
border-top-right-radius: 3px;
border-bottom-right-radius: 3px;
}
.filter-remove {
margin-left: 0px;
}
.sign-out {
width: 100%;
margin-bottom: 10px;
}
.toggle-account-list, .transactions table thead td {
cursor: pointer;
}
@media (min-width: 768px) {
.accounts {
position: fixed;
}
}