-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
83 lines (71 loc) · 2.16 KB
/
index.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
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
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@500&display=swap');
#calculator{
width:400px;height:600px;
border-radius: 20px;
box-shadow: 1px 1px 20px rgb(177, 176, 176);
position: absolute;left:50%;top:50%;
transform: translate(-50%,-50%);
}
#screen{
margin-top: 10px;
width: 90%;height:120px;
margin-left: 5%;
border-radius: 20px 20px 0px 0px;
background-color: rgb(64, 121, 241);
text-align:right;font-weight: bolder;
font-size:60px;font-family:"DM Sans",sans-serif;
line-height: 180px;color:white;
}
#button{
width:90%;height:230px;margin-top:5%;
overflow:hidden;margin-left:5%;
}
#button li{
width:60px;height: 60px;line-height:50px;
border-radius: 10px;position: absolute;
box-shadow: 1px 1px 10px lightgrey;
list-style-type: none;text-align: center;
cursor:pointer;
font-size:20px;font-family:"DM Sans",sans-serif;
}
#button li:hover{
background-color:lightgreen;color:white;
}
#button li:nth-child(1),#button li:nth-child(2),
#button li:nth-child(3),#button li:nth-child(11){
margin-top:10px;
}
#button li:nth-child(4),#button li:nth-child(5),
#button li:nth-child(6),#button li:nth-child(12){
margin-top:90px;
}
#button li:nth-child(7),#button li:nth-child(8),
#button li:nth-child(9),#button li:nth-child(13){
margin-top:170px;
}
#button li:nth-child(1),#button li:nth-child(4),
#button li:nth-child(7),#button li:nth-child(10){
margin-left:10px;
}
#button li:nth-child(11),#button li:nth-child(12),#button li:nth-child(14),#button li:nth-child(13){
margin-left:270px;
}
#button li:nth-child(2),#button li:nth-child(5),
#button li:nth-child(8),#button li:nth-child(16){
margin-left:95px;
}
#button li:nth-child(3),#button li:nth-child(6),
#button li:nth-child(9),#button li:nth-child(17)
{
margin-left:180px;
}
#button li:nth-child(10),#button li:nth-child(16),
#button li:nth-child(17),#button li:nth-child(14){
margin-top:250px;
}
#button li:nth-child(15){
margin-top:330px;margin-left:10px;
}
#button li:nth-child(18){
margin-top:330px;margin-left:90px;
}