-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
104 lines (102 loc) · 1.56 KB
/
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
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
@import url('https://fonts.googleapis.com/css?family=Poppins:400');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: poppins;
text-transform: capitalize;
}
.container {
/* background-color: pink; */
width: 75vw;
min-height: 100vh;
margin: 0 auto;
padding: 1rem;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 2rem;
}
.sec {
width: 80%;
display: flex;
flex-direction: column;
padding: 2rem;
border-radius: 15px;
}
.sec h3 {
text-align: center;
}
.b-sec {
background-color: rgb(144, 212, 144);
border: 5px solid green;
}
.input {
padding: 0.5rem 0.25rem;
margin-top: 1rem;
border-radius: 5px;
}
.total div {
margin-top: 1rem;
font-size: 1.5rem;
}
#b-amount {
border: 2px solid green;
}
.btn {
width: 50%;
margin: 1rem auto 0;
padding: 0.5rem;
font-size: 1rem;
font-weight: 700;
border-radius: 5px;
}
.b-submit {
border: 2px solid green;
}
.e-sec {
background-color: rgb(212, 157, 144);
border: 5px solid red;
}
.e-submit {
border: 2px solid red;
}
#e-desc {
border: 2px solid red;
}
#e-amount {
border: 2px solid red;
}
.js-sec {
background-color: darkgrey;
}
.balance {
background-color: cadetblue;
text-align: center;
display: grid;
grid-template-columns: 1fr 1fr 1fr;
}
.error {
background-color: rgb(52, 0, 0);
color: rgb(255, 255, 255);
min-width: 70%;
}
.date {
background-color: grey;
pad: 1rem;
}
#date {
padding: 1rem;
}
.date h3 {
margin-bottom: 1rem;
}
.hide {
display: none;
}
.single-js {
font-size: 1.5rem;
}