-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
231 lines (195 loc) · 4.13 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
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
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
@import url('https://fonts.googleapis.com/css2?family=Black+Ops+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Black+Ops+One&family=Kalam:wght@300&display=swap');
*{
font-family: 'Black Ops One', system-ui;
}
html{
scroll-behavior: smooth;
}
body{
margin: 0%;
padding: 0%;
}
.intro{
display: grid;
grid-template-columns: 2.5fr 3fr;
height: 99vh;
width: 100vw-10px;
padding: 10px;
}
.bgi{
background-image: url("./image/img1.jpg");
background-size: cover;
background-position: center;
}
.icontext{
padding: 20px;
background-image: url("./image/img1.jpg");
background-size: cover;
background-position:center;
background-clip: text;
}
.icontext h1{
text-align: center;
margin-top:15% ;
font-size: 120px;
color: transparent;
-webkit-text-stroke: 1px black;
}
.buttongrp{
display: flex;
justify-content: space-evenly;
}
.buttongrp>a>button{
font-family: 'Black Ops One', system-ui;
font-family: 'Kalam', cursive;
padding: 10px;
color: white;
background: black;
border-radius: 10px;
}
.buttongrp>a>button:hover, .addbtn:hover{
color: black;
background-color: white;
border: 2px solid black;
}
.buttongrp>a>button:active, .addbtn:active{
scale: 0.9;
}
/* main display */
.maindisplay{
display: grid;
grid-template-columns: 1fr 1fr 1fr;
margin: auto;
}
.maindisplay>div{
margin: auto;
padding: 10px;
border-radius:25px;
min-width: 50%;
max-width: fit-content;
}
.maindisplay>div:nth-child(1){
background-color:rgb(5, 195, 5) ;
color: white;
box-shadow: 2px 2px 10px rgb(5, 195, 5);
}
.maindisplay>div:nth-child(2){
background-color: rgb(201, 8, 8);
color: white;
border: 5px solid rgb(201, 8, 8);
box-shadow: 2px 2px 10px rgb(201, 8, 8);
}
.maindisplay>div:nth-child(3){
background-color: rgb(50, 50, 255) ;
color: white;
box-shadow: 2px 2px 10px rgb(50, 50, 255);
}
.maindisplay h3{
text-align: center;
font-size: 20px;
}
/* add section */
.addform{
height: fit-content;
width: 500px;
padding: 15px;
margin: auto;
border: 2px solid black;
border-radius: 30px ;
margin-bottom: 20px;
}
.radiogrp{
display: flex;
justify-content: space-evenly;
}
h1{
text-align: center;
}
form>div{
display: grid;
grid-template-columns: 2fr 2fr;
margin-top: 20px;
text-align: center;
}
.addbtn{
background: green;
margin: 100px;
margin-top: 50px;
margin-bottom: 50px;
width: 300px;
height: 30px;
font-family: 'Black Ops One', system-ui;
font-family: 'Kalam', cursive;
color: white;
background: black;
border-radius: 10px;
}
/* transaction history */
.transaction{
width: 50vw;
margin: auto;
height: fit-content;
border: 2px solid black;
border-radius: 10px ;
margin-bottom: 30px;
display: grid;
grid-template-columns: 2fr 5fr 1fr;
padding: 20px;
position: relative;
}
.income{
background-image: url("./image/increment.png");
background-position: center;
background-size: contain;
background-repeat: no-repeat;
width: 80%;
height: 50%;
margin: auto;
}
.expense{
background-image: url("./image/decrement.png");
background-position: center;
background-size: contain;
background-repeat: no-repeat;
width: 80%;
height: 50%;
margin: auto;
}
.transaction>div>h1{
margin-top: 60%;
}
.deletebtn{
background-color: black;
position: absolute;
color: white;
border: 3px solid white;
padding: 3px;
border-radius: 50%;
width: 50px;
height: 50px;
font-size: 30px;
font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
top: -25px;
left: 97%;
}
.deletebtn:hover{
background-color: white;
color: black;
scale: 1.2;
border: 2px solid black;
box-shadow: 2px 2px 5px black;
}
.deletebtn:active{
scale: .9;
}
.graph{
margin: 20px;
padding: 20px;
width: fit-content;
display: grid;
grid-template-columns: 2fr 2fr;
height: fit-content;
margin: auto;
margin-top: 20px;
}