forked from code-differently/JS-Calculator-Lab
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCalculator.css
More file actions
107 lines (56 loc) · 1.06 KB
/
Calculator.css
File metadata and controls
107 lines (56 loc) · 1.06 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
.container {
text-align: inline-block;
}
.card {
background-color:#0F0140 ;
margin-top: 200px;
margin-right: auto;
margin-left: auto;
width: 10;
border-radius: 15% 15% 15% 15%;
}
.input {
text-align: right;
font-size: 32px;
margin-right: 65px;
margin-left: 65px;
display: inline-block;
width: 575px;
height: 100px;
border-radius: 5% 5% 5% 5%;
}
.btm{
background-color: #2405F2;
margin: 40px 15px 15px 15px;
font-size: 32px;
margin-left: 10px;
margin-right: 10px;
width: 125px;
text-align: center;
color: white;
border-radius: 8% 8% 8% 8%;
/*height: 55px;*/
}
/* could not get the purple*/
.btm:hover{
background-color: #F29F05 ;
}
.equal-button{
background-color: #6805F2;
}
.buttonrow{
margin: 50px 20px 50px 20px;
padding: 5% 5% 5% 5%;
position: relative;
}
#purp{
background-color: purple ;
}
#purp:hover{
background-color: #BF05F2;
}
h1{
color: white;
margin-top: 5px;
margin-left: 70px;
}