18 lines
326 B
CSS
18 lines
326 B
CSS
@import "tailwindcss";
|
|
|
|
:root {
|
|
--background-image-diplomacy: url('background.png');
|
|
}
|
|
|
|
body {
|
|
background-image: var(--background-image-diplomacy);
|
|
background-attachment: fixed;
|
|
background-size: 600px;
|
|
background-repeat: repeat;
|
|
}
|
|
|
|
.game-map svg {
|
|
width: 100%;
|
|
height: auto;
|
|
max-height: 70vh;
|
|
} |