-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
78 lines (65 loc) · 1.15 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
.calculatorMain {
width: 350px;
height: 400px;
background-color: #181B28;
border-radius: 15px;
box-shadow: 2px 2px 4px black;
}
.displayScreen {
width: 100%;
height: 15%;
padding: 10px;
box-sizing: border-box;
display: flex;
align-items: center;
border-radius: 15px;
}
.input {
height: 100%;
width: 90%;
border-radius: 3px;
padding: 5px;
background-color: white;
box-sizing: border-box;
}
.Reset {
height: 100%;
width: 10%;
margin: 0px 1px 0px 1px;
background-color: #e6326b;
border-radius: 3px;
border: 0px;
}
h2 {
padding: 0px;
margin: 0px;
text-align: right;
}
.keys {
width: 100%;
height: 80%;
background-color: #1b192c;
display: flex;
flex-wrap: wrap;
justify-content: space-around;
padding: 15px;
box-sizing: border-box;
}
.number {
width: 27%;
}
.transactions {
width: 15%;
}
.number,
.transactions {
height: 50px;
background-color: #5F2A89;
border-radius: 3px;
display: flex;
justify-content: center;
align-items: center;
color: white;
font-weight: bold;
font-size: 150%;
}