-
Notifications
You must be signed in to change notification settings - Fork 0
/
pixiplatformer.css
68 lines (68 loc) · 1.05 KB
/
pixiplatformer.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
body {
margin: 0;
padding: 0;
background-color: #000000;
color: #EEEEEE;
font-family: 'Helvetica Neue', 'Arial', sans-serif;
}
#game {
width: 1000px;
height: 600px;
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
margin: auto;
}
.float-footer {
position: absolute;
bottom: 0;
right: 0;
padding: 8px;
background-color: #000000;
}
#logo {
margin: 10px auto;
width: 435px;
height: 360px;
}
.two-column {
width: 930px;
height: 260px;
margin: 0 auto;
}
.first-column {
float: left;
}
.second-column {
float: right;
}
.text-box {
background-color: #241f10;
border: 1px solid #41391d;
width: 500px;
margin: 0 auto;
padding: 16px;
}
.introduction, .announcement {
font-weight: bold;
font-size: larger;
}
.play-game {
background-color: #41391d;
border: 1px solid #695c2f;
display: block;
width: 300px;
margin: 60px auto;
height: 140px;
text-decoration: none;
text-align: center;
color: white;
font-size: 36px;
}
.play-game span {
display: block;
position: relative;
top: 48px;
}