-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
113 lines (98 loc) · 1.94 KB
/
style.css
File metadata and controls
113 lines (98 loc) · 1.94 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
body{
font-family: 'Calibri', 'Arial';
background-color: black;
color: cornsilk;
}
#container {
width: 1000px;
height: 550px;
background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url(bgImg.png);
margin: 20px auto;
}
#calculator{
width: 320px;
height: 520px;
background-color: rgb(209, 209, 209);
margin: 0 auto;
position: relative;
top: 15px;
border-radius: 10px;
box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
}
#footer{
padding-top: 2px;
width: 320px;
margin: 0 auto;
font-size: 9px;
color: black;
}
#result{
height: 120px;
}
#history{
text-align: right;
height: 20px;
margin: 0 20px;
padding-top: 20px;
font-size: 15px;
color: rgb(112, 111, 111);
}
#output{
text-align: right;
height: 60px;
margin: 10px 20px;
font-size: 30px;
color: rgb(0, 0, 0);
}
#keyboard{
height: 400px;
}
.operator, .number{
width: 50px;
height: 50px;
margin: 15px;
float: left;
border-radius: 30%;
border-width: 0px;
box-shadow: 2px 4px 5px 0 rgb(134, 134, 134),0 6px 20px 0 rgba(134, 134, 134, 0.19);
font-size: 15px;
cursor: pointer;
}
.operator:active, .number:active{
color: blue;
font-size: 12px;
}
.operator{
font-weight: bold;
}
.empty{
background-color: rgb(209, 209, 209);
width: 50px;
height: 50px;
margin: 15px;
float: left;
border-radius: 30%;
border-width: 0px;
font-size: 15px;
}
button:nth-child(4){
font-size: 25px;
background-color: rgb(238, 255, 5);
}
button:nth-child(8){
font-size: 25px;
background-color: rgb(255, 5, 234);
}
button:nth-child(12){
font-size: 25px;
background-color: rgb(255, 105, 5);
}
button:nth-child(16){
font-size: 25px;
background-color: rgb(93, 5, 255);
}
button:nth-child(20){
font-size: 25px;
background-color: rgb(9, 44, 139);
color: rgb(212, 212, 212);
}