-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
60 lines (50 loc) · 939 Bytes
/
main.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
.budget-tracker {
border-collapse: collapse;
min-width: 750px;
}
.budget-tracker * {
font-family: sans-serif;
}
.budget-tracker th {
text-align: left;
padding: 10px 20px;
border-bottom: 2px solid #009578;
}
.budget-tracker td {
padding: 5px;
}
.input,
.delete-entry {
height: 30px;
font-size: 13px;
padding: 0 10px;
margin: 0;
box-sizing: border-box;
}
.input {
border: 1px solid #dddddd;
border-radius: 5px;
outline: none;
}
.input:focus {
border-color: #bbbbbb;
}
.delete-entry {
display: flex;
align-items: center;
justify-content: center;
width: 30px;
background: none;
color: red;
border: none;
border-radius: 50%;
outline: none;
cursor: pointer;
}
.delete-entry:hover {
background: rgba(255, 0, 0, 0.1);
}
.controls,
.summary {
text-align: right;
}