-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
65 lines (55 loc) · 1.28 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
.calculators{
display: grid;
grid-template-columns: auto;
width: 200px;
gap: 5px;
grid-column-start: 1;
grid-column-end: 4;
color: antiquewhite;
}
.calculators select{
padding: 5px;
background-color: #17202A;
border-color: #00FF00;
color: antiquewhite;
}
.options{
display: block;
}
.numbersGrid {
display: inline-grid;
grid-gap: 10px;
grid-template-columns: auto auto auto;
background-color: #17202A;
padding: 15px;
margin: 8px;
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.numbersGrid input{
grid-column-start: 1;
grid-column-end: 4;
padding: 15px 10px;
background-color: #17202A;
color: antiquewhite;
border-color: #00FF00;
}
button{
padding: 8px 8px;
text-align: center;
font-weight: bold;
background-color: #17202A;
color: antiquewhite;
border-color: #00FF00;
}
button:hover{
transform: scale(1.5,1.5);
}
button:nth-child(17){
background-color:orangered;
border-color: orangered;
}
button:nth-child(18){
grid-column-start: 1;
grid-column-end: 4;
transform: none;
}