-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
112 lines (111 loc) · 2.14 KB
/
styles.css
File metadata and controls
112 lines (111 loc) · 2.14 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
@import url('https://fonts.googleapis.com/css2?family=Kufam&display=swap');
* {
font-family: 'Kufam', cursive;
text-align: center;
}
h2 {
color: slateblue;
}
#container {
width: 50%;
text-align: center;
border: 1px solid;
margin: auto;
}
#income {
width: 48%;
min-height: 100px;
float: left;
margin-top: 10px;
margin-bottom: 10px;
border-right: steelblue solid;
}
#expense {
width: 48%;
min-height: 100px;
float: left;
margin-top: 10px;
margin-bottom: 10px;
border-left: steelblue solid;
}
#amount {
width: 80%;
padding: 12px 20px;
margin: 8px 0;
box-sizing: border-box;
border: none;
border-bottom: 2px solid red;
border-radius: 50px;
height: 30px;
outline: none;
}
#expensetype {
width: 80%;
padding: 12px 20px;
margin: 8px 0;
box-sizing: border-box;
border: none;
border-bottom: 2px solid red;
border-radius: 50px;
height: 30px;
outline: none;
}
#btnAddtransaction {
margin: 10px 0px 10px 0px;
background-color: white;
color: black;
border: 2px solid #3369ff;
border-radius: 4px;
text-align: center;
text-decoration: none;
width: 150px;
height: 50px;
transition-duration: 0.4s;
}
#btnAddtransaction:hover {
color:#FFFFFF;
background-color:#3369ff;
border: 5px solid #e7e7e7;
}
#deleteRecord {
float: left;
width: 25px;
height: 25px;
color: white;
padding: 3px 1px 0px 1px;
margin-top: -5px;
background-color: #fa3015;
border: none;
border-bottom: 2px solid white;
border-radius: 25px;
font-weight: 600;
}
#deleteRecord:hover {
border: 2px solid #e7e7e7;
}
#record {
margin: auto;
margin-top: 10px;
width: 80%;
height: 30px;
text-align: center;
padding: 20px 5px 5px 5px;
background-color: gray;
color: white;
border-right: 5px solid #2ecc71;
}
@media screen and (max-width: 1166px) {
#container {
width: 80%;
}
}
@media screen and (max-width: 450px) {
#container {
width: 90%;
}
}
@media screen and (max-width: 280px) {
#container {
width: 100%;
}
}