-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcalculator.css
More file actions
87 lines (85 loc) · 1.7 KB
/
calculator.css
File metadata and controls
87 lines (85 loc) · 1.7 KB
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
body{
font-family: 'Open Sans' sans serif;
background-color: black;
}
#container{
/* background-color: rgba(20, 148, 84, 0.692); */
background-image: linear-gradient(rgba(0,0,0,0.3),rgba(0,0,0,0.3)), url(abc.jpeg);
height: 550px;
width: 1000px;
}
#calculator{
width: 320px;
height: 520px;
background-color: hsl(228, 33%, 97%);
margin: 0 auto;
top: 20px;
position: relative;
border-radius: 5px;
}
#result{
height:120px;
/* background-color: violet; */
}
#history{
text-align: right;
height: 20px;
margin: 0 20px;
padding-top: 20px;
font-size: 15px;
color: #919191;
/* background-color:yellow; */
}
#output{
text-align: right;
height: 60px;
margin: 10px 20px;
font-size: 30px;
/* background-color:red; */
}
#keyboard{
height:400px;
/* background-color: skyblue; */
}
.operator, .number, .empty{
width: 50px;
height:50px;
margin:15px;
float: left;
border-radius: 50%;
border-width: 0;
font-weight: bold;
font-size: 15px;
}
.number, .empty{
background-color: hsl(240, 18%, 97%);
}
.number, .operator{
cursor: pointer;
}
.operator:active, .number:active{
font-size: 13px;
}
.operator:focus, .number:focus, .empty:focus{
outline: 0;
}
button:nth-child(4){
font-size: 20px;
background-color: #20b2aa;
}
button:nth-child(8){
font-size: 20px;
background-color: #ffa500;
}
button:nth-child(12){
font-size: 20px;
background-color: #f08080;
}
button:nth-child(16){
font-size: 20px;
background-color: #7d93e0;
}
button:nth-child(20){
font-size: 20px;
background-color: #9477af;
}