source: binary-improvements/webserver/css/style.css@ 244

Last change on this file since 244 was 244, checked in by alloc, 10 years ago

Fixes intermediate state

  • Property svn:executable set to *
File size: 1.9 KB
Line 
1/* Generic page layout */
2
3body {
4 margin: 0;
5 padding: 0;
6}
7
8.adminwrapper {
9 width: 100%;
10 height: 100vh;
11 background-color: #ccc;
12}
13
14.adminmenu,
15.admincontent {
16 position: absolute;
17 top: 0;
18 bottom: 0;
19}
20
21.adminmenu {
22 width: 200px;
23 left: 0;
24 background-color: purple;
25}
26
27.adminmenu .current_tab {
28 font-weight: bold;
29 text-transform: uppercase;
30}
31
32.adminmenu .menu_button a {
33 color: #000;
34}
35
36.adminmenu #userstate {
37 position: absolute;
38 bottom: 5px;
39 left: 5px;
40 right: 5px;
41 background-color: green;
42}
43
44.adminmenu #userstate #username {
45 padding-left: 10px;
46}
47
48.adminmenu #userstate > div {
49 display: none;
50}
51
52.admincontent {
53 position: absolute;
54 right: 0;
55 left: 200px;
56 background-color: #fff;
57}
58
59.admincontent .contenttab {
60 position: absolute;
61 top: 0;
62 right: 0;
63 left: 0px;
64 display: none;
65}
66
67.admincontent .current_tab {
68 display: block;
69}
70
71/* Individual tabs */
72
73.adminmap {
74 background-color: #260040;
75 bottom: 0;
76}
77
78
79
80/* Inventory dialog overlay */
81
82#info {
83 background-color: #aaaaaa;
84 position: absolute;
85 bottom: 10px;
86 left: 10px;
87}
88.invTable {
89 table-layout: fixed;
90 padding: 0px;
91 margin: 0px;
92 border-collapse: collapse;
93 background-color: #303030;
94}
95.invField {
96 width: 58px;
97 height: 40px;
98 padding: 1px 4px;
99 margin: 0px;
100 border: 1px solid gray;
101 background-size: 58px;
102 background-repeat: no-repeat;
103 background-position: center;
104 vertical-align: bottom;
105 text-align: right;
106 font-size: 14pt;
107 color: #ffffff;
108 text-shadow:
109 -1px -1px 0 #000,
110 1px -1px 0 #000,
111 -1px 1px 0 #000,
112 1px 1px 0 #000;
113}
114.inventoryButton {
115 color: #00ff00;
116 cursor: pointer;
117}
118#playerInventoryDialog {
119 display:none;
120}
121
122.ui-dialog {
123 z-index:1011 !important;
124}
125.ui-widget-overlay {
126 z-index:1010 !important;
127}
128
129
130/* Map controls */
131
132
133.webmap-control a,
134.webmap-control a:hover {
135 text-decoration: none;
136}
137
138.webmap-control {
139 box-shadow: 0 1px 5px rgba(0,0,0,0.4);
140 background: #fff;
141 border-radius: 5px;
142 padding: 6px 10px 6px 6px;
143 color: #333;
144 white-space: nowrap;
145}
146
Note: See TracBrowser for help on using the repository browser.