-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
59 lines (59 loc) · 1.14 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
body, #solveButton, #clearButton {
background-image: url("background.jpg");
background-color: blanchedalmond;
font-family: 'Bacasime Antique', serif;
}
#container {
text-align: center;
padding-left: 100px;
padding-right: 100px;
}
table {
border-collapse: collapse;
font-size: 2em;
margin: 0 auto;
}
colgroup, tbody {
border: solid medium;
}
td {
border: solid thin;
height: 1.4em;
width: 1.4em;
text-align: center;
padding: 0;
}
button {
margin-top: 15px;
font-size: 1.5em;
}
.padd, #instr, #buttons {
padding-bottom: 20px;
}
#heading1 {
font-size: 35px;
}
#info, #fact, #instr, #solveButton, #clearButton {
font-size: 20px;
}
#solveButton, #clearButton {
background-color: bisque;
background-image: none;
text-align: center;
width: 150px;
border-radius: 7px;
}
#container {
animation-name: animate;
animation-duration: 3s;
animation-iteration-count: 1;
animation-timing-function: ease-in-out;
}
@keyframes animate {
from {
opacity: 0;
}
to {
opacity: 1;
}
}