-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
66 lines (57 loc) · 966 Bytes
/
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
h1 {
text-align: center;
background-color: plum;
}
p {
text-align: center;
background-color: lavender;
}
.contain {
display: grid;
grid-template-columns: auto auto auto auto;
background-color: #dadada;
margin: 30px auto !important;
height: 450px;
width: 400px;
border: 5px solid #d3d2d2;
border-radius: 3px;
}
.input {
border: 1px solid #dcdddf;
text-align: center;
padding: 20px;
font-size: large;
}
#result {
text-align: center;
background-color: #b9b9b9;
color: #919191;
grid-column-start: 1;
grid-column-end: 5;
text-align: left;
padding: 5px;
align-items: center;
font-size: xx-large;
margin: 8px;
margin-top: 15px;
/* margin-left: 1rem; */
/* margin-right: 1em; */
}
#equal {
grid-column-start: 3;
grid-column-end: 5;
background-color: #0d6efd;
}
#divide,
#multiply,
#add,
#subtract,
#dot {
color: blue;
}
#clear {
color: red;
}
.input:hover {
background-color: lightseagreen;
}