Changeset 249 for binary-improvements/webserver/css
- Timestamp:
- Aug 7, 2015, 10:18:37 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
binary-improvements/webserver/css/style.css
r247 r249 6 6 margin: 0; 7 7 padding: 0; 8 background-image: url('/static/img/background.jpg'); 9 background-repeat: no-repeat; 10 background-attachment: fixed; 11 background-position: center; 12 color: orange; 13 } 14 15 a { 16 color: #ff6000; 17 text-decoration: none; 18 } 19 20 a:visited { 21 color: #ff6000; 22 text-decoration: none; 8 23 } 9 24 … … 11 26 width: 100%; 12 27 height: 100vh; 13 background-color: #408040;28 /*background-color: #408040;*/ 14 29 } 15 30 … … 19 34 top: 0; 20 35 bottom: 0; 36 } 37 38 .invalidinput { 39 background-color: #f00; 21 40 } 22 41 … … 29 48 width: 200px; 30 49 left: 0; 31 background-color: #408040; 50 border-right: 1px solid rgba(0,0,0,0.3); 51 box-shadow: 3px 0px 14px rgba(0,0,0,0.9); 32 52 } 33 53 … … 53 73 54 74 .adminnavbar #adminmenu .menu_button a { 55 color: #000;75 color: orange; 56 76 text-decoration: none; 57 77 } … … 69 89 margin-bottom: 20px; 70 90 display: none; 71 color: #000;91 /* color: orange; */ 72 92 text-decoration: none; 73 93 } … … 86 106 left: 0px; 87 107 right: 0px; 88 background-color: #408040;108 /*background-color: #408040;*/ 89 109 } 90 110 … … 106 126 right: 0; 107 127 left: 200px; 108 background-color: #408040;128 /*background-color: #408040;*/ 109 129 } 110 130 … … 125 145 } 126 146 127 /* Individual tabs */128 129 .adminmap {130 background-color: #408040;131 bottom: 0;132 }133 134 147 135 148 … … 144 157 left: 10px; 145 158 } 159 160 .inventoryButton { 161 cursor: pointer; 162 } 163 #playerInventoryDialog { 164 display:none; 165 } 166 .playerInventoryDialog { 167 text-shadow: 168 -1px -1px 0 black, 169 1px -1px 0 black, 170 -1px 1px 0 black, 171 1px 1px 0 black; 172 box-shadow: 0 3px 14px rgba(0,0,0,0.4); 173 color: orange; 174 background: rgba(100,100,100,0.6); 175 border: none; 176 } 177 .playerInventoryDialog .ui-dialog-buttonpane { 178 display: none; 179 } 180 .playerInventoryDialog.ui-dialog { 181 z-index:1011 !important; 182 } 183 .ui-widget-overlay { 184 z-index:1010 !important; 185 opacity: 0.4 !important; 186 } 187 .playerInventoryDialog .ui-widget-content { 188 background: transparent; 189 color: orange; 190 } 191 .playerInventoryDialog td { 192 vertical-align: top; 193 } 194 146 195 .invTable { 147 196 table-layout: fixed; … … 150 199 border-collapse: collapse; 151 200 } 152 .invField { 201 #equipmentTable .invFieldText { 202 display: none; 203 } 204 .playerInventoryDialog td.invField { 153 205 width: 58px; 154 206 height: 40px; … … 156 208 margin: 0px; 157 209 border: 1px solid gray; 158 background-color: #303030;210 background-color: black; 159 211 background-size: 58px; 160 212 background-repeat: no-repeat; … … 163 215 text-align: right; 164 216 font-size: 14pt; 165 color: #ffffff;166 217 text-shadow: 167 -1px -1px 0 #000, 168 1px -1px 0 #000, 169 -1px 1px 0 #000, 170 1px 1px 0 #000; 171 } 172 173 #equipmentTable .invFieldText { 174 display: none; 175 } 176 177 .inventoryButton { 178 color: #00ff00; 179 cursor: pointer; 180 } 181 #playerInventoryDialog { 182 display:none; 183 } 184 185 .ui-dialog { 186 z-index:1011 !important; 187 } 188 .ui-widget-overlay { 189 z-index:1010 !important; 190 } 191 192 193 194 /* Map controls */ 195 196 197 .webmap-control a, 198 .webmap-control a:hover { 199 text-decoration: none; 218 -1px -1px 0 black, 219 1px -1px 0 black, 220 -1px 1px 0 black, 221 1px 1px 0 black; 222 } 223 224 225 226 227 /*======================================== 228 - Map 229 */ 230 231 .adminmap { 232 /*background-color: #408040;*/ 233 background-color: transparent; 234 bottom: 0; 235 } 236 237 .adminmap .leaflet-control { 238 background-color: rgba(50,50,50,0.6); 239 color: orange; 240 box-shadow: 0 3px 14px rgba(0,0,0,0.5); 241 } 242 243 .adminmap a, 244 .adminmap a:hover, 245 .adminmap .leaflet-container a, 246 .adminmap .leaflet-container a:hover { 247 text-decoration: none; 248 color: #ff6000; 200 249 } 201 250 202 251 .webmap-control { 203 box-shadow: 0 1px 5px rgba(0,0,0,0.4);204 background: #fff;205 252 border-radius: 5px; 206 253 padding: 6px 10px 6px 6px; 207 color: #333;208 254 white-space: nowrap; 209 255 } 210 256 257 .adminmap .leaflet-popup-tip, 258 .adminmap .leaflet-popup-content-wrapper { 259 background-color: rgba(50,50,50,0.8); 260 color: orange; 261 } 262
Note:
See TracChangeset
for help on using the changeset viewer.