-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
105 lines (93 loc) · 2.03 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
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
103
104
105
* {
margin: 0;
padding: 0;
box-sizing: border-box;
background-color: #ecf0f3;
font-family: sans-serif;
/* overflow: hidden; */
}
.container {
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
.calculator {
background-color: #ecf0f3;
padding: 15px;
border-radius: 30px;
box-shadow: 12px 12px 20px #cbced1, -12px -12px 20px #ffffff;
display: grid;
grid-template-columns: repeat(4, 68px);
}
input {
grid-column: span 4;
height: 70px;
width: 260px;
background-color: #ecf0f3;
box-shadow: inset 8px 8px 8px #cbced1, inset -8px -8px 8px #ffffff;
border: none;
border-radius: 30px;
color: rgb(70, 70, 70);
font-size: 50px;
text-align: end;
margin: auto;
margin-top: 40px;
margin-bottom: 30px;
padding: 20px;
}
button {
height: 48px;
width: 48px;
/* background-color: #c5e4fc; */
box-shadow: 5px 5px 8px #00000020, -5px -5px 8px #ffffff;
transition: .1s;
border: none;
border-radius: 50%;
margin: 8px;
font-size: 16px;
}
button:hover {
box-shadow: inset 5px 5px 8px #00000020, inset -5px -5px 8px #fff;
background: #fff;
}
.equal {
width: 115px;
border-radius: 40px;
font-size: 21px;
background-color: #f79a06;
box-shadow: 5px 5px 8px #00000020, -5px -5px 8px #ffffff;
color: #fff;
}
.equal:hover {
width: 115px;
border-radius: 40px;
box-shadow: inset 5px 5px 8px #ffab24, inset 0px 0px 8px #f5ad39;
background: rgb(255, 145, 0);
}
.clear_button {
background: #33cc33;
color: #fff;
}
.clear_button:hover {
box-shadow: inset 5px 5px 8px #2eb82e, inset 2px 2px 8px #33cc33;
background: #33cc33;
}
.operator {
color: #ffab24;
font-weight: bold;
font-size: 18px;
}
.operator:hover {
color: #ff9e02;
}
.basic_footer span {
background-color: #9de2ee;
margin-bottom: 0px;
padding: 5px;
font-size: 18px;
color: black;
justify-content: center;
text-align: center;
/* overflow: auto; */
}