-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathscreen.css
More file actions
87 lines (71 loc) · 1.13 KB
/
screen.css
File metadata and controls
87 lines (71 loc) · 1.13 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
* {
box-sizing: border-box;
}
.root {
font-family: Roboto, arial, sans-serif;
font-size: 16px;
height: 100%;
margin: 0;
}
.container {
margin: 0;
height: 100%;
background: #17191c;
display: flex;
flex-direction: column;
}
.title {
font-size: 36px;
color: white;
}
.masthead {
text-align: center;
}
.content {
text-align: center;
flex: 1;
}
.grid {
margin: auto;
border-spacing: 0;
}
.row {
}
.cell {
margin: 0;
padding: 0;
border: solid 1px rgb(17, 17, 17);
width: 40px;
height: 40px;
cursor: pointer;
transition: all 0.25s;
background: #272b30;
border-radius: 5px;
}
.cell:hover {
}
.cell.alive {
background: grey;
}
.cell.current {
}
.cell.alive.current {
background: white;
box-shadow: 0px 0px 100px white;
z-index: 1;
}
.button {
margin: 1em;
padding: 0.25em 1em;
}
.adsbygoogle {
display: block;
}
.adslot_1 {width: 320px; height: 100px; }
@media (min-width:500px) { .adslot_1 { width: 468px; height: 60px; } }
@media (min-width:800px) { .adslot_1 { width: 728px; height: 90px; } }
.twitter-share-button {
position: absolute!important;
top: 10px;
left: 10px;
}