-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcalc.css
55 lines (55 loc) · 815 Bytes
/
calc.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
#calculator {
border: 1px solid;
width: 300px;
overflow: auto;
background: #ccc;
}
.io-field {
border: 1px solid;
height: 52px;
margin: 5px;
padding: 2px;
text-align: right;
overflow: hidden;
position: relative;
background: #fff;
}
.calculation, .collapsed-calculation {
font-size: 10px;
height: 14px;
line-height: 14px;
}
.input {font-size: 16px;
height: 24px;
line-height: 24px;
}
.keyboard-input {
opacity: 0;
position: absolute;
top: 0;
}
.numbers {
margin: 5px;
width: 120px;
float: left;
}
.operations {margin: 5px;
width: 160px;
float: left;
}
.button {
width: 30px;
height: 30px;
padding: 0;
font-size: 14px;
line-height: 30px;
text-align: center;
border: 1px solid;
cursor: pointer;
float: left;
margin: 4px;
background: #fafafa;
}
.button.number-0 {
width: 70px;
}