-
Notifications
You must be signed in to change notification settings - Fork 0
/
calculator.css
51 lines (42 loc) · 923 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{
height: 395px;
width: 400px;
background-color:#4e4f4d;
margin-left:31%;
margin-top:3%;
padding-top: 20px;
border-radius: 10px;
border: 5px;
border-style: solid;
}
#screen{
height:50px;
width:360px;
background:#f4f4f4;
margin-left:20px;
border-style: solid;
border-color: rgb(39, 34, 34);
border-radius: 10px;
background-color: rgb(143, 175, 143);
pointer-events: none;
font-size: large;
}
.btn{
width: 70px;
height: 50px;
margin-left:21px;
margin-top:13px;
border-color: rgb(39, 34, 34);
border-radius: 10px;
background-color: rgb(91, 112, 136);
font-weight: bold ;
}
#clr{
width:70%;
height:60px;
margin-left:23px;
margin-top: 9px;
border-color: rgb(39, 34, 34);
border-radius: 10px;
background-color: rgb(187, 63, 63);
}