mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 18:22:39 +00:00
The layout HTML (which was mainly used for the title bar) is no longer hard coded in nanoui.dm. Layouts are now dynamic and each consists of a template and stylesheet (CSS) file. Multiple layouts can exist, they can be switched to using the set_layout_key proc. See the proc comments for more info. Added "default" and "basic" layouts, "basic" has no title bar. Moved image source assets (GIMP and Flash files) into a separate source folder so that they are not sent to the client.
22 lines
371 B
CSS
22 lines
371 B
CSS
body {
|
|
background: #272727 url(uiBasicBackground.png) 50% 0 repeat-x;
|
|
}
|
|
|
|
#uiContent {
|
|
clear: both;
|
|
padding: 8px;
|
|
}
|
|
|
|
#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;
|
|
}
|
|
|
|
|