-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
109 lines (93 loc) · 1.85 KB
/
styles.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
106
107
108
109
* {
padding: 0;
margin: 0;
box-sizing: border-box;
background-color: burlywood;
font-family: sans-serif;
outline: none;
}
.container {
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
.calculator {
background-color: blue;
padding: 15px;
border-radius: 30px;
box-shadow: inset -5px -5px 12px #ffff inset 5px 5px 12px rgba(0, 0, 0, .16);
display: grid;
}
input {
grid-column: span 4;
height: 70px;
width: 250px;
background-color: white;
box-shadow: inset -5px -5px 12px inset 5px 5px 12px rgb(0, 0, .16);
border: none;
border-radius: 30px;
color: black;
font-size: 10px;
text-align: start;
margin: auto;
margin-top: 20px;
padding: 20px;
}
.inputresult{
margin-top: 10px;
margin-bottom: 10px;
height:30px;
width: 250px;
grid-column: span 4;
border-radius: 30px;
padding: 10px;
background-color: white;
}
button {
height: 40px;
width: 40px;
background-color: bisque;
box-shadow: inset -5px -5px 12px inset 5px 5px 12px rgb(0, 0, .16);
border: none;
border-radius: 50%;
margin: 4px;
font-size: 16px;
color: black;
}
.equal {
background-color: black;
color: white;
}
.delete {
background-color: black;
color: white;
}
.percent {
background-color: black;
color: white;
}
.divide {
background-color: black;
color: white;
}
.subtract {
background-color: black;
color: white;
}
.multiply {
background-color: black;
color: white;
}
.add {
background-color: black;
color: white;
}
.click {
background-color: black;
color: white;
}
.clear {
background-color: black;
color: white;
}