-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcalculator.css
69 lines (60 loc) · 1.2 KB
/
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
.container{
text-align: center;
margin-top:15px
}
table{
margin: auto;
}
input{
border-radius: 18px;
border: 5px solid #244624;
font-size:30px;
height: 55px;
width: 370px;
}
button{
border-radius: 10px;
font-size: 40px;
background: #9651e6;
width: 90px;
height: 70px;
margin: 2px;
}
button:hover{
background: white;
}
.calculator{
border: 4px solid #79d1c5;
background-color: rgb(9, 17, 11);
padding: 18px;
border-radius: 50px;
display: inline-block;
}
.calculator table .btn #c button{
background: red;
}
.calculator table .btn #c button:hover{
background: orangered;
}
calculator table .btn button{
background: pink;
}
calculator table .btn button:hover{
background: rgb(221, 9, 44);
}
.calculator table .btn-2 #e button{
background: green;
}
.calculator table .btn-2 #e button:hover{
background: rgb(9, 248, 9);
}
.calculator table .btn-2 #btn-1 button{
background: pink;
}
.calculator table .btn-2 #btn-1 button:hover{
background: rgb(221, 9, 44);
}
h1{
font-size: 35px;
font-family: 'Courier New', Courier, monospace;
}