erfamap/style/erfamap.css

74 lines
918 B
CSS
Raw Normal View History

2022-10-12 03:10:17 +02:00
html, body {
margin: 0;
padding: 0;
}
2022-10-08 21:17:31 +02:00
2022-10-12 03:10:17 +02:00
body {
max-width: 100%;
2022-10-12 03:10:17 +02:00
overflow: scroll;
}
2022-10-11 02:29:45 +02:00
2022-10-08 21:17:31 +02:00
rect.background {
fill: #759eb5;
stroke: none;
}
polygon.country {
fill: #c3c3c3;
stroke: #ffffff;
stroke-width: 2;
}
polygon.state {
fill: #ffffff;
stroke: #c3c3c3;
stroke-width: 3;
2022-10-08 21:17:31 +02:00
}
2022-10-11 02:29:45 +02:00
circle.erfa {
z-index: 1;
}
circle.chaostreff {
z-index: 2;
}
2022-10-08 21:17:31 +02:00
circle.erfa, circle.chaostreff {
fill: #f47e1e;
stroke: #ffffff;
stroke-width: 3;
}
2022-10-11 02:29:45 +02:00
a > circle, a > text {
cursor: pointer;
}
a:hover > circle {
fill: #5b8ca7;
}
a:hover > text {
fill: #5b8ca7;
}
2022-10-08 21:17:31 +02:00
text.erfalabel {
2022-10-14 20:32:58 +02:00
font-family: "Concert One";
2022-10-09 22:40:01 +02:00
font-size: 45px;
2022-10-11 02:29:45 +02:00
z-index: 100;
2022-10-11 02:39:33 +02:00
user-select: none;
2022-10-08 21:17:31 +02:00
}
rect.debugleft {
stroke: red;
stroke-width: 1;
fill: none;
2022-10-11 02:29:45 +02:00
z-index: 1000;
2022-10-08 21:17:31 +02:00
}
rect.debugright {
stroke: green;
stroke-width: 1;
fill: none;
2022-10-11 02:29:45 +02:00
z-index: 1000;
2022-10-08 21:17:31 +02:00
}