-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
71 lines (61 loc) · 1.24 KB
/
style.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
body{
background-color: #F5F5F5;
position: relative;
}
h2{
text-align: center;
font-size: 40px;
color: #3498DB;
}
h3{
text-align: center;
font-size: 32px;
color: #E74C3C;
}
.calculator{
background-color: azure;
align-items: center;
position: absolute;
top: 170px;
left: 30.5%;
border: 3px solid orangered;
padding-top: 10px;
padding-bottom: 10px;
padding-left: 20px;
padding-right: 20px;
border-radius: 7px;
}
.calculator form input{
border: 0;
outline: 0;
height: 50px;
width: 50px;
border-radius: 5px;
margin: 10px;
box-shadow: -8px -8px 15px rgba(255,255,255,0.1),5px 5px 15px rgba(0,0,0,0.2);
background: transparent;
font-size: 20px;
color: black;
cursor: pointer;
}
#display{
background-color: #2E86C1;
width: 490px;
height: 70px;
text-align: right;
box-shadow: none;
font-size: 45px;
}
.clear{
background-color: #C0392B !important;
}
.equal{
background-color: aquamarine !important;
width: 125px !important;
}
.operator{
background-color: #27AE60 !important;
}
.other{
background-color: rgb(255, 94, 0) !important;
}