-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapple-calculator.css
56 lines (52 loc) · 1.18 KB
/
apple-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
.text {
background-color: #EFFAC8;
width:270px;
height: 84px;
border-radius: 7px;
text-align: right;
border-style: inset;
font-family: "Arial";
font-size: 25pt;
padding: 2px 50px 2px 50px;
}
button {
font-size:10pt;
margin-top: 9px;
margin-bottom:5px;
border-radius: 10px;
height: 50px;
width: 90px;
background-color:#D6D6D6;
font-family: "Arial";
font-size: 25pt;
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #ededed), color-stop(1, #dfdfdf) );
}
button[id="equals"] {
height: 115px;
}
button[id="zero"] {
position: relative;
bottom: 64px;
width: 185px;
}
button[id="dot"] {
position: relative;
bottom: 64px;
}
button[id="one"], button[id="two"], button[id="three"] {
position: relative;
bottom: 32px;
}
button:hover{
/*border-width:5px;*/
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #dfdfdf), color-stop(1, #ededed) );
}
.apple-calculate {
position: absolute;
top: 0;
left: 0;
background: -webkit-linear-gradient(top, #DBDBDB, #AFAFAF);
background-color:#B8B8B8;
width:390px;
height:490px;
}