-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlightsout.css
83 lines (63 loc) · 1.14 KB
/
lightsout.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
#lightsout * {
box-sizing: border-box;
}
#lightsout {
width: 10em;
margin: auto;
}
#lightsout-timer {
width: 3em;
font-size: 2em;
text-align: center;
margin: auto;
}
#lightsout-board {
font-size: 2em;
width: 5em;
height: 5em;
display: grid;
grid-template-columns: repeat(5, 1em);
background-color: rgb(90, 90, 90);
margin: auto;
margin-bottom: 20px;
border: 1px solid black;
}
.lightsout-square {
width: 1em;
height: 1em;
grid-row-start: auto;
grid-column-start: auto;
border: 1px solid black;
}
.js-lightsout-square-on {
background-color: white;
}
#lightsout-newgame-btn {
display: block;
margin: auto;
margin-bottom: 20px;
padding-top: 0.3em;
}
#overlay {
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
z-index:1000;
background-color: rgba(0, 0, 0, 0.5);
opacity:0;
display:none;
}
#container {
position:absolute;
top:30%;
left:50%;
margin-left:-200px;
width: 400px;
height:250px;
background-color:#111;
padding:5px;
border-radius:4px;
color:#FFF;
}