-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcalculator.css
68 lines (58 loc) · 993 Bytes
/
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
.resultTd:hover {
background-color: dimgray;
cursor: auto;
}
.resultField {
height: 8em;
overflow: scroll;
margin-inline: 0.5em;
cursor: auto;
padding-inline: 1em;
}
input {
background-color: dimgray;
color: white;
font-size: 20px;
box-sizing: border-box;
width: 100%;
border: none;
}
.inputField {
padding: 2%;
}
table {
margin-inline: auto;
border-spacing: 8px;
table-layout: fixed;
width: 80%;
}
td {
background-color:dimgray;
font-size: 18px;
font-family: sans-serif;
text-align: center;
color: white;
padding-top: 20px;
padding-bottom: 20px;
border-radius: 10px;
cursor: pointer;
border: none;
}
td:hover {
background-color:darkgray;
}
.equal-btn {
background-color:coral;
font-size: 24px;
}
.equal-btn:hover {
background-color: lightsalmon;
}
ul {
list-style-type: none;
}
li {
padding-top: 0.5em;
text-align: end;
font-size: 20px;
}