-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
64 lines (61 loc) · 950 Bytes
/
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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
padding: 100px;
height: 100vh;
}
/* login-area css code */
#login-area h1{
font-family: monospace;
font-weight: 700;
font-size: 40px;
}
.submit-area{
margin-top: 40px;
box-shadow: 5px 5px 10px rgba(104, 102, 102, 0.568);;
padding: 30px;
border-radius: 10px;
}form{
margin-top: 25px;
}
.btn{
margin-top: 20px;
}
.for-sign-style{
margin-top: 20px;
}
.for-sign-style a{
text-decoration: none;
font-size: 15px;
}
/* transaction-area css code */
#transaction-area{
display: none;
}
#transaction-area h1{
margin-bottom: 30px;
}
.status{
margin: 10px 20px;
padding: 20px;
border-radius: 10px;
color: white;
}
.deposit{
background-color: #6A5ACD;
}
.withdraw{
background-color: #FFA07A;
}
.balance{
background-color: #FFA500;
}
footer{
margin-top: 150px;
}
footer p{
font-size: 12px;
}