-
Notifications
You must be signed in to change notification settings - Fork 0
/
Bank.css
106 lines (77 loc) · 1.34 KB
/
Bank.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
.top{
width: 100%;
height: 100px;
background-color:rgba(192,192,192);
display: flex;
align-items: center;
justify-content: space-evenly;
}
.top #icp{
border-radius: 60px;
width: 60px;
height: 60px;
}
#body{
background-image: url(BANK.jpg) ;
background-repeat: no-repeat;
height: 100%;
}
#bank{
font-size: 70px;
}
.mainContainer{
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
}
.main{
background: #000;
color: aliceblue;
display: flex;
flex-direction: column;
border: 1px solid black;
width: 500px;
height: 500px;
justify-content: space-evenly;
border-radius: 20px;
margin-top: 40px;
}
.main > .Container0 > span{
font-size: 30px;
}
.main > .Container1 > span {
font-size: 30px;
}
.Container2{
display: flex;
justify-content: space-evenly;
}
.Container2 > button {
width: 200px;
}
.Container3{
display: flex;
flex-direction: row;
justify-content: space-evenly;
}
#bal{
width: 200px;
font-weight: 900;
}
.top > nav {
font-weight: 900;
}
.top{
border-bottom-left-radius: 20px ;
border-bottom-right-radius: 20px;
}
#ac,#amt {
font-weight: 900;
}
#balance{
color: rgb(31, 233, 233);
font-weight: bolder;
}