-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
62 lines (47 loc) · 860 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
*{
margin: 0;
padding: 0;
}
body{
background-color: #f1f1f1;
}
.calculatorBody{
position:absolute;
top: 50%;
left:50%;
transform: translate(-50%, -50%);
height: 600px;
width: 500px;
}
table{
background-color: #fff;
box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
border: 2px solid black;
}
td{
text-align: center;
color: #fff1;
border: 2px solid black;
}
input[type="button"]{
width: 90px;
height: 80px;
color: #fff;
border-radius: 5px;
font-size: 2rem;
cursor: pointer;
transition: 0.2 ease-in-out;
background-color: black;
border: none;
}
input[type="button"]:hover{
background-color: aquamarine;
}
input[type="text"]{
width: 340px;
height: 80px;
text-align: right;
margin: 10px;
padding: 2px;
font-size: 30px;
}