-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
99 lines (96 loc) · 1.65 KB
/
style.css
File metadata and controls
99 lines (96 loc) · 1.65 KB
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
body {
background-color: white;
}
h1 {
text-align: center;
}
h4 {
text-align: center;
}
.calcNumbers {
display: grid;
grid-template-columns: auto auto auto;
padding: 10px;
outline: 1px solid rgba(0,0,0,0.2);
justify-content: center;
width: 400px;
margin: auto;
background-color: lightgrey;
}
.calcBackground {
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
z-index: -1;
overflow: hidden;
}
.calcNumber{
padding: 20px;
font-size: 30px;
padding: 20px;
font-size: 30px;
text-align: center;
outline: 1px solid lightgrey;
background-color: rgba(0, 0, 0, 0.829);
color: white;
}
.calcNumber:hover {
background: rgba(59, 59, 59, 0.897);
}
.calcRow1{
grid-row: 2;
}
.calcRow2{
grid-row: 3;
}
.calcRow3{
grid-row: 4;
}
.calcRow4{
grid-row: 5;
}
.calcOperator {
background-color: rgb(141, 140, 140);
}
.calcOperator:hover {
background: rgb(104, 102, 102);
}
.calcColumn {
padding-right: 30px;
padding-left: 30px;
}
#deleteOperator{
padding: 10px;
font-size: 40px;
text-align: center;
}
#calcDisplay{
padding: 20px;
font-size: 30px;
text-align: right;
grid-column-start: 1;
grid-column-end: 6;
grid-row: 1;
place-self: right;
outline: 1px solid rgba(0,0,0,0.2);
outline-offset: -1px;
}
#calcBackground{
padding: 8px;
font-size: 13px;
color: black;
text-align: right;
grid-column-start: 1;
grid-column-end: 6;
grid-row: 1;
place-self: right;
background-color: white;
}
#equalsOperator {
background-color: rgb(255, 199, 94);
}
#equalsOperator:hover {
background-color: orange;
}