-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
55 lines (55 loc) · 905 Bytes
/
style.css
File metadata and controls
55 lines (55 loc) · 905 Bytes
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
body{
font-family:"Vazirmatn",sans-serif;
background:#0d1117;
color:#e6eef6;
margin:0;
}
.container{
max-width:1000px;
margin:auto;
padding:20px;
}
h1{
color:#43c3ff;
text-align:center;
}
.grid{
display:grid;
grid-template-columns:2fr 1fr;
gap:20px;
}
.card{
background:#161b22;
padding:20px;
border-radius:15px;
}
.item{
padding:10px;
margin:6px;
background:#1c222b;
border-radius:10px;
cursor:pointer;
transition:0.2s;
}
.item:hover{
transform:scale(1.03);
border:1px solid #43c3ff;
}
.spent-card{
background:#13171f;
padding:10px;
margin-bottom:8px;
display:flex;
justify-content:space-between;
border-radius:10px;
}
.money-float{
position:fixed;
font-size:22px;
pointer-events:none;
animation:floatUp 0.9s ease forwards;
}
@keyframes floatUp{
from{opacity:1; transform:translateY(0);}
to{opacity:0; transform:translateY(-80px);}
}