mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-26 18:13:35 +00:00
Necessary changes to nanomapgen.dm and various image files to generate new nanoui maps have not been committed. These changes were required because our station's map is 300x300 tiles, not 255x255 tiles like the Exodus. Changes were needed to layout_default.css to ensure the map shows properly in the UI at 300x300. This should work fine for now, but other changes can be pushed through to bring the tools in line with our map's size if necessary.
129 lines
2.0 KiB
CSS
129 lines
2.0 KiB
CSS
body {
|
|
background: #272727 url(uiBackground.png) 50% 0 repeat-x;
|
|
}
|
|
|
|
#uiWrapper {
|
|
width: 100%;
|
|
height: 100%;
|
|
-ms-user-select: none;
|
|
user-select: none;
|
|
}
|
|
|
|
#uiTitleWrapper {
|
|
position: relative;
|
|
height: 30px;
|
|
}
|
|
|
|
#uiTitleText {
|
|
position: absolute;
|
|
top: 6px;
|
|
left: 44px;
|
|
width: 66%;
|
|
overflow: hidden;
|
|
color: #E9C183;
|
|
font-size: 16px;
|
|
}
|
|
|
|
#uiTitle.icon {
|
|
padding: 6px 8px 6px 42px;
|
|
background-position: 2px 50%;
|
|
background-repeat: no-repeat;
|
|
}
|
|
|
|
#uiTitleFluff {
|
|
position: absolute;
|
|
top: 4px;
|
|
right: 12px;
|
|
width: 42px;
|
|
height: 24px;
|
|
background: url(uiTitleFluff.png) 50% 50% no-repeat;
|
|
}
|
|
|
|
#uiStatusIcon {
|
|
position: absolute;
|
|
top: 4px;
|
|
left: 12px;
|
|
width: 24px;
|
|
height: 24px;
|
|
}
|
|
|
|
#uiMapWrapper {
|
|
clear: both;
|
|
padding: 8px;
|
|
}
|
|
|
|
#uiMapHeader {
|
|
position: relative;
|
|
clear: both;
|
|
}
|
|
|
|
#uiMapContainer {
|
|
position: relative;
|
|
width: 100%;
|
|
height: 600px;
|
|
overflow: hidden;
|
|
border: 1px solid #40628a;
|
|
background: url(nanomapBackground.png);
|
|
}
|
|
|
|
#uiMap {
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
margin: -512px 0 0 -512px;
|
|
width: 300px;
|
|
height: 300px;
|
|
overflow: hidden;
|
|
zoom: 4;
|
|
}
|
|
|
|
#uiMapImage {
|
|
position: absolute;
|
|
bottom: 1px;
|
|
left: 1px;
|
|
width: 300px;
|
|
height: 300px;
|
|
}
|
|
|
|
#uiMapContent {
|
|
position: absolute;
|
|
bottom: 0px;
|
|
left: 0px;
|
|
width: 300px;
|
|
height: 300px;
|
|
}
|
|
|
|
#uiMapFooter {
|
|
position: relative;
|
|
clear: both;
|
|
}
|
|
|
|
#uiContent {
|
|
clear: both;
|
|
padding: 8px;
|
|
}
|
|
|
|
#uiMapTooltip {
|
|
position: absolute;
|
|
right: 10px;
|
|
top: 10px;
|
|
border: 1px solid #40628a;
|
|
background-color: #272727;
|
|
padding: 8px;
|
|
display: none;
|
|
z-index: 9999;
|
|
}
|
|
|
|
#uiLoadingNotice {
|
|
position: relative;
|
|
background: url(uiNoticeBackground.jpg) 50% 50%;
|
|
color: #000000;
|
|
font-size: 14px;
|
|
font-style: italic;
|
|
font-weight: bold;
|
|
padding: 3px 4px 3px 4px;
|
|
margin: 4px 0 4px 0;
|
|
}
|
|
|
|
|