-
Notifications
You must be signed in to change notification settings - Fork 13
/
layout.css
88 lines (73 loc) · 1.09 KB
/
layout.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
84
85
86
87
88
#main-container {
min-width: 1250px;
}
#left-area {
width: 800px;
height: 820px;
position: absolute;
}
#right-area {
margin-left: 850px;
width: 300px;
height: 820px;
}
#build-menu div {
margin-bottom: 10px;
display: inline-block;
}
#canvas-container {
height:400px;
width: 800px;
}
#info-panel {
width: 300px;
height: 200px;
margin-left: auto;
margin-right: auto;
text-align: center;
}
#info-panel-data {
height:150px;
outline: 1px solid black;
}
canvas {
position: absolute;
left: 0px;
top: 0px;
display:block;
}
.grey {
background:#EEE;
}
#start-prompt, #game-over-message {
display: none;
position: absolute;
top: 10%;
z-index: 2;
width:400px;
margin-left:-200px;
left:50%;
text-align: center;
background-color:rgba(250,250,250,0.8);
}
#start-prompt button {
font-size: 4em;
}
#game-over-message h1 {
font-size: 5em;
text-align: center;
margin: 0;
}
#main-time {
margin-top: 0;
}
.selected-building {
background-color: #efe;
}
.building-container {
width:200px;
}
#status-messages {
height: 80px;
overflow: hidden;
}