-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
105 lines (74 loc) · 1.05 KB
/
style.css
File metadata and controls
105 lines (74 loc) · 1.05 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
body{
margin: 0;
padding: 0;
}
h1{
text-align:center;
color:goldenrod;
}
#name-div{
display:flex;
}
#name{
font-size:large;
padding:0px 10px;
font-weight:bold;
}
#input-name{
width: 100%;
box-sizing:border-box;
padding:0 4px;
}
#date-div{
display:flex;
margin-top: 20px;
padding:0px 10px;
font-size:large;
font-weight: bold;
}
#date{
padding-right:10px;
}
#input-date{
padding:0 4px;
width: 30%;
}
#amount-el{
margin-left: 10px;
margin-right: 10px;
}
#input-amt{
width: 30%;
}
#button-el{
margin-top: 30px;
text-align:center;
}
#add-btn{
background: rgb(11, 94, 11);
border:1px solid;
color:white;
font-weight:bold;
padding: 20px;
}
table{
margin-top: 20px;
width:100%;
box-sizing:border-box;
}
th{
text-align:left;
}
table, th, td {
border:1px solid;
border-collapse: collapse;
}
th, td{
padding: 10px;
}
tr:nth-child(even){
background-color:#ffff;
}
tr:nth-child(odd){
background-color:#ddd;
}