forked from github/game-off-2013
-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathsetup.css
More file actions
68 lines (57 loc) · 933 Bytes
/
setup.css
File metadata and controls
68 lines (57 loc) · 933 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
#setup {
-moz-box-sizing: border-box;
box-sizing: border-box;
width: 100%;
height: 100%;
position: absolute;
left: 0;
top: 0;
-webkit-transition: all 0.5s;
transition: all 0.5s;
background-color: #444;
padding: 0 20%;
font-size: 120%;
}
#setup #attacker span, #setup #defender span {
display: inline-block;
width: 6em;
}
#play {
float: right;
font-size: 200%;
border-radius: 1em;
padding: 0.2em 0.5em;
}
#play:not([disabled]) {
cursor: pointer;
}
#setup.playing {
-webkit-transform: translate(0, -100%);
transform: translate(0, -100%);
}
#setup #description {
color: #6f6;
font-variant: small-caps;
}
#setup #network {
font-family: monospace;
}
#setup #connect {
cursor: pointer;
}
#setup #connect.connected:before {
color: #0f0;
content: "✓ ";
}
.local #setup #network {
display: none;
}
footer {
position: absolute;
bottom: 2px;
right: 2px;
font-size: 80%;
}
footer a {
color: #fff;
}