forked from TinkerHubKMCTCE/Fi-Pro-Challenge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcalculator.css
51 lines (51 loc) · 976 Bytes
/
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
body{
padding:0;
margin:0;
background:linear-gradient(to right, #00AAFF, #00FF6C);
}
.calc{
width: 320px;
height:520px;
background-color: white;
margin: 0 auto;
top: 20px;
poosition:relative;
border-radius:5px;
}
#screen{
width:75%;
height:80px;
margin-left: 36px;
margin-top: 30px;
pointer-events: none;
}
.operator,.number,.empty{
width:50px;
height:50px;
margin:15px;
float:left;
border-radius:50%;
border-width:0;
font-weight: bold;
font-size:15px;
}
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;
}