-
Notifications
You must be signed in to change notification settings - Fork 0
/
calculator.css
116 lines (85 loc) · 1.65 KB
/
calculator.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
107
108
109
110
111
112
113
114
115
116
body{
margin:0;
align-items: center;
justify-content: center;
background: linear-gradient(to left,#7808f0,#06bdf5);
text-align: center;
height: 100px;
}
.calci{
margin-left:575px;
}
#jp{
justify-items: end;
justify-content: center;
align-items: center;
}
.calci{
height: fit-content;
width:500px;
padding-top: 100px;
padding-bottom: 100px;
position: absolute;
top: 50%;
left: 70px;
transform: translate(-50%,-50%);
transition: 0.25px;
text-align: center;
align-items: center;
justify-content: center;
}
#display{
border: none;
background-color: white;
border-radius: 30px;
width: 245;
font-size: 20;
font-family: sans-seri;
font-weight: 300;
height: 60;
margin: auto;
border: 2px solid white;
color: black;
}
.btnDesign{
width: 55;
height: 55;
padding-top: -1;
background: white;
border: none;
font-family: sans-serif;
font-size: 20;
font-weight: 300;
border-radius: 30px;
margin: 1.5;
}
.operatorDesign{
width: 55;
height: 55;
background: white;
padding-top: -1;
border: none;
font-family: sans-serif;
font-size: 20;
font-weight: 300;
border-radius: 30px;
margin: 1.5;
transition: 00.25px;
cursor: pointer;
}
.operatorDesign:hover{
background:#00d9ff;
}
#zero{
width: 116;
height: 55;
padding-top: -1;
border: none;
font-family: sans-serif;
font-size: 20;
font-weight: 300;
border-radius: 30px;
margin: 1.5;
background: white;
transition: 00.25px;
}