-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcalc.css
More file actions
88 lines (88 loc) · 1.62 KB
/
calc.css
File metadata and controls
88 lines (88 loc) · 1.62 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
88
body {
text-align: center;
padding-top: 10px;
color: white;
font-size: xx-large;
font-family: "Lucida Console", Courier, monospace;
background-color: black;
}
#container{
width: 1oo0px;
height: 600px;
padding-left: 30px;
background-image: linear-gradient(rgba(0,0,0,0.3),rgba(0,0,0,0.3)),url(background.jpg);
margin: 40px 50px 30px 30px;
}
#calculator{
width: 320px;
height: 520px;
background-color: aliceblue;
margin: auto;
top: 45px;
position: relative;
border-radius: 8px ;
}
#result{
height: 120px;
}
#history{
color: #8F8D8D;
text-align: right;
height: 20px;
margin: 0 20px;
padding-top: 10px;
font-size: 15px;
}
#output{
color: black;
text-align: right;
padding-right: 10px;
padding-bottom: 10px;
font-size: 40px;
font-weight: bold;
}
#keyboard{
height: 400px;
}
.operator, .number, .empty{
width: 50px;
height: 50px;
margin: 15px;
float: left;
border-radius: 45%;
border-width: 0ch;
font-size: 15px;
font-weight: bold;
}
.empty{
background-color: aliceblue;
}
.number, .operator{
cursor: pointer;
}
.operator:active, .number:active{
font-size: 12px;
}
.operator:focus, .number:focus, .empty:focus{
outline: 0;
}
button:nth-child(4){
font-size: 20px;
background-color: #fa6767;
}
button:nth-child(8){
font-size: 20px;
background-color: #00ff00
}
button:nth-child(12){
font-size: 30px;
background-color: #809fff
}
button:nth-child(16){
font-size: 20px;
background-color: #ffff00
}
button:nth-child(20){
font-size: 20px;
background-color: #d96ffc
}