-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmagicMath.css
More file actions
67 lines (56 loc) · 1.15 KB
/
magicMath.css
File metadata and controls
67 lines (56 loc) · 1.15 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
body {
font-family: 'Times New Roman', Times, serif;
}
h1 {
border: 3px solid black;
text-align: center;
}
button:hover {
background-color: #ddd;
box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}
#mainArea {
display: grid;
grid-template-columns: 150px 150px 300px 300px;
column-gap: 100px;
}
#gameBoard {
font-size: 50px;
display: grid;
grid-template-columns: 100px 100px;
grid-template-rows: 100px 100px;
grid-gap: 10px;
}
#gameBoard > button {
text-align: center;
font-size: 100%;
border: 2px solid black;
}
#operators > button {
font-size: 50px;
margin: 3px;
text-align: center;
display: grid;
grid-template-columns: 50px;
grid-gap: 0px;
border: 2px solid black;
}
#workArea {
background-color: lightgray;
text-align: center;
border: 1px solid black;
}
#workArea > ul {
text-align: left;
}
#scoreBoard {
background-color: lightgrey;
text-align: center;
border: 1px solid black;
}
footer {
font-size: 15px;
text-align: center;
background-color: gray;
color: white;
}