-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcss.html
More file actions
73 lines (57 loc) · 837 Bytes
/
css.html
File metadata and controls
73 lines (57 loc) · 837 Bytes
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
<style>
h1 {
color: white;
font-family: courier;
}
p {
display: inline;
margin-left: 10px;
color: white;
font-family: courier;
}
#life {
padding: 5px;
background-color: black;
margin: auto;
width: 842px;
border-radius: 5px;
box-shadow: 0 0 200px black;
}
#chat {
padding: 5px;
position: absolute;
top: 105px;
right: 10px;
background-color: #aaa;
width: 200px;
border-radius: 5px;
box-shadow: 0 0 200px black;
}
.grid {
margin-left: 11px;
}
.row {
line-height: 0;
}
.cell {
width: 10px;
height: 10px;
background-color: white;
display: inline-block;
margin: 1px;
}
.born {
background-color: #00ddff;
}
.live {
background-color: #004499;
}
.controls {
padding-bottom: 5px;
overflow: auto;
}
button {
margin: 2px 2px 2px 2px;
font-family: courier;
}
</style>