-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.css
83 lines (82 loc) · 1.37 KB
/
index.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
body {
background-color: #fff;
font-family: Helvetica, Arial, sans-serif;
}
body.in-game {
overflow: hidden;
height: 100%;
}
body.in-game #page-container {
display: none;
}
body.in-game .world-container {
display: block;
position: absolute;
height: auto;
bottom: 0;
top: 0;
left: 0;
right: 0;
background-color: black;
height: 100%;
}
body.in-game #game-canvas-wrapper {
background-color: #fff;
height: 100%;
}
.game-canvas {
margin: 0;
height: 100%;
}
.intro-note {
font-family: 'Courier New', Courier, monospace;
padding: 1em;
max-width: 50em;
}
#launch-instructions {
display: none;
}
#game-load-wrapper.loaded #launch-instructions {
display: block;
}
/* General Site Style sTuff */
.navbar-brand,
.navbar-brand:hover,
.navbar-brand::selection {
color: #fff;
}
.navbar {
background-color: #283af5;
background-image: url('/images/site/nav-background.png');
background-size: 75px;
background-repeat: repeat-x;
color: #fff;
}
a.nav-link {
color: #ccc;
}
a.nav-link:hover {
color: #ff0;
}
.navbar-nav .nav-link.active {
color: #ff0;
/*border-bottom: 1px solid black;*/
}
.navbar-toggler {
background-color: rgba(255, 255, 255, 0.5);
border: 1px solid #fff;
}
h4 {
margin-top: 70px;
}
.scoreboard {
background-color: #eee;
padding: 20px;
margin: 30px 0;
}
.scoreboard h4 {
margin-top: 0;
}
a {
text-decoration: none;
}