-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathboard.css
More file actions
162 lines (156 loc) · 2.96 KB
/
board.css
File metadata and controls
162 lines (156 loc) · 2.96 KB
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
@keyframes glow1{
0%, 100%{
opacity:1;
background-color:blue;
}
20%{
background-color:limegreen;
}
40%{
opacity:.85;
background-color:gold;
}
60%{
background-color:orange;
}
80%{
background-color:auburn;
}
}
@keyframes glow2{
0%, 100%{
opacity:1;
background-color:#333333;
}
50%{
opacity:0.95;
background-color:#333399;
}
}
@keyframes glow3{
0%, 100%{
opacity:1;
background-color:#443333;
}
50%{
opacity:0.9;
background-color:#787815;
}
}
@keyframes glow4{
0%, 100%{
opacity:1;
background-color:#553333;
}
50%{
opacity:0.85;
background-color:#951212;
}
}
@keyframes glow5{
0%, 100%{
opacity:1;
background-color:#663333;
}
50%{
opacity:0.85;
background-color:#BB3636;
}
}
@keyframes moveText{
0%,100%{
padding:10px 5px;
}
50%{
padding:20px 5px;
}
}
#Board{
background-color:#333333;
animation:glow1 12.5s ease-in-out infinite;
width:100%;
height:100%;
}
#PreGame{
font: bold 30px Papyrus, serif;
text-align:center;
background:silver;
opacity:.8;
}
#PreGame p{
animation:moveText 5s linear infinite;
}
#Game{
display:none;
}
.Tile{
height:50px;
width:50px;
margin:1px;
float:left;
box-shadow: .5 .5 .8 #000; /*Needs work*/
background-color:dodgerblue;
text-align:center;
font: bold 30px Papyrus, serif;
background-blend-mode:luminosity;
}
.Tile:hover{
opacity:.9;
}
#BoardGame{
float:left;
display:inline-block;
height:520px;
width:520px;
background-size:100% 100%;
background-color:transparent;//#222200;
background-image:url("http://i.imgur.com/jhADyem.png");
}
#Info{
display:inline-block;
width:50%;
float:right;
font: bold 30px Papyrus, serif;
text-align:center;
}
#Info span{
font:14px;
}
.grassTile{
background:url("http://i.imgur.com/2XB09Ij.png");
}
.waterTile{
background:url("http://i.imgur.com/RjCnCYt.png");
}
.roadTile{
background:url("http://i.imgur.com/fKAbNUt.png");
}
.snowTile{
background:url("http://i.imgur.com/IAxhGLD.png");
}
.treasureTile{
background:url("http://i.imgur.com/19pl7Un.png");
}
.mountainTile *, .mountainTile{
background:url("http://i.imgur.com/UpbB1JO.png");
}
.unkTile{
background:url("http://placehold.it/50/888888/ff3344?text=?");
}
.activeTile *, .activeTile{
// background:url("http://i.imgur.com/u65CrnM.png");
background:url("http://elementscommunity.org/images/Misc/water120x120.png") 50% 50%;
}
#areaNameSpan, #tileDescriptionSpan{
color:#EEEEEE;
}
#log{
width:50%;
height:300px;
width:600px;
resize:none;
font:"courier" 14px;
color:#CCCCCC;
background-color:#333333;
overflow:hidden;
}