-
Notifications
You must be signed in to change notification settings - Fork 1
/
life.css
64 lines (55 loc) · 927 Bytes
/
life.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
body {
background-color: #EF2E00;
text-align: center;
font-family: Arial;
}
table {
display: inline;
border-collapse: collapse;
}
td {
height: 20px;
width: 20px;
margin: 0px;
border-radius: 10pt;
}
.alive {
background-color: red;
}
.dead {
background-color: black;
}
.button {
font-family: Arial;
border-radius: 4pt;
height: 40px;
width: 140px;
background-color: #FF6E30;
color: black;
text-align: center;
border: none;
margin: 20px;
}
#board-container {
display: inline;
}
#button-container {
display: inline;
float: left;
width: 200px;
height: 200px;
margin: 100px 0px 0px 200px;
}
#key {
width: 200px;
height: 85px;
border-style: solid;
border-width: 1px;
background-color: #FF6E30;
float: right;
display: inline;
margin: 120px 200px 0px 0px;
}
#caption-text {
margin-top: 30px;
}