summaryrefslogtreecommitdiff
path: root/play.css
blob: 72819b0949a6454dd1070729321b6444652b2268 (plain)
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

#mapwrap {
	width: 2485px;
	height: 1654px;
	margin-bottom: 30px;
}

#map {
	position: absolute;
	width: 2485px;
	height: 1654px;
	background-size: cover;
	background-image: url(Maria.Gameboard.075.jpg);
	background-color: #ece1a9;
}

#political_display {
	position: relative;
	margin: 0 auto;
	width: 1169px;
	height: 827px;
	background-size: cover;
	background-image: url(Maria.Political.Display.100.jpg);
	background-color: #ece1a9;
}

body {
	background-color: slategray;
}

.panel {
	background-color: #444;
	width: clamp(824px, calc(100% - 30px), 1636px);
	margin: 12px auto 36px auto;
	box-shadow: 1px 2px 6px #0004;
	border: 1px solid #0008;
}

.panel_header {
	color: white;
	font-weight: bold;
	text-align: center;
	padding: 3px 1em;
	border-bottom: 1px solid #0008;
}

.panel_body {
	background-color: #555;
	display: flex;
	justify-content: start;
	flex-wrap: wrap;
	padding: 18px;
	gap: 18px;
	min-height: 350px;
}

.city {
	position: absolute;
	width: 18px;
	height: 18px;
	border-radius: 100%;
	background-color: green;
}

.minor_fortress {
	position: absolute;
	width: 26px;
	height: 26px;
	border-radius: 0%;
	background-color: green;
}

.major_fortress {
	position: absolute;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background-color: green;
}