-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
63 lines (53 loc) · 986 Bytes
/
main.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
body{
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
background-color: aquamarine;
}
h1{
display: block;
font-size: 40px;
}
table {
border-collapse: collapse;
font-family: Calibri, sans-serif;
}
colgroup, tbody {
border: 4px solid black;
}
td {
border: 2px solid black;
height: 2em;
width: 2em;
text-align: center;
padding: 0;
}
button.solve{
font-size: 20px;
margin: 1%;
}
table.keypad{
visibility: hidden;
font-weight: bold;
width: 15%;
height: 38%;
background-color: blueviolet;
position: absolute;
top: 25%;
left: 42.5%;
opacity: 0.98;
}
@media (max-device-aspect-ratio: 1/1) {
table.keypad{
left: 30%;
width: 40%;
}
}
table.keypad td{
border: 2px solid black;
font-size: 120%;
}
table.keypad td:hover{
background-color: yellow;
}