blob: 175fcd9f6b62c5b5d20649e83094eb496565b7c9 (
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
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
|
#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;
box-sizing: border-box;
border: 2px solid black;
width: 24px;
height: 24px;
border-radius: 100%;
background-color: #0002;
}
.minor.fortress {
position: absolute;
box-sizing: border-box;
border: 2px solid black;
width: 28px;
height: 28px;
border-radius: 0%;
//background-color: lime;
}
.major.fortress {
position: absolute;
border: 2px solid black;
box-sizing: border-box;
width: 40px;
height: 40px;
border-radius: 50%;
//background-color: lime;
}
.Austria { background-color: #fcffff; }
.France { background-color: #ea192e; }
.Prussia { background-color: #035783; }
.Netherlands { background-color: #7d7c7a; }
.Silesia { background-color: #91b4a0; }
.Saxony { background-color: #127a3b; }
.Bavaria { background-color: #fcb01f; }
.fortress.HRE { background-color: #b41a70; }
.city.HRE { background-color: #e0d796; }
.Poland { background-color: #cac180; }
.major_road {
position: absolute;
box-sizing: border-box;
background-color: black;
width: 20px;
height: 6px;
}
.road {
position: absolute;
box-sizing: border-box;
background-color: dimgray;
width: 20px;
height: 4px;
}
|