├── .project
├── LICENSE.txt
├── README.md
├── all.sql
├── apacheReverseProxy
├── ports.conf
└── sites-available
│ ├── blog.example.io
│ ├── example.io
│ └── www.example.io
├── setup.sh
├── whiteLightning
├── mysqli_connect.php
└── www
│ ├── e
│ ├── config_e.inc.php
│ ├── index.html
│ ├── php_debug_inc.php
│ ├── php_msfrpc_inc.php
│ ├── template-be.php
│ ├── template-fe.php
│ └── template-p.php
│ ├── empty.pdf
│ ├── getJavaInfo.jar
│ ├── index.html
│ ├── m
│ ├── css
│ │ ├── bootstrap.min.css
│ │ ├── component.css
│ │ ├── cooltables.css
│ │ ├── font-awesome.min.css
│ │ ├── jquery.dataTables.css
│ │ ├── plugins
│ │ │ └── morris.css
│ │ ├── sb-admin.css
│ │ ├── shCore.css
│ │ └── tabs.css
│ ├── fonts
│ │ ├── glyphicons-halflings-regular.eot
│ │ ├── glyphicons-halflings-regular.svg
│ │ ├── glyphicons-halflings-regular.ttf
│ │ └── glyphicons-halflings-regular.woff
│ ├── img
│ │ └── whitelightning.jpg
│ ├── includes
│ │ ├── config.inc.php
│ │ ├── index_bargraph_data.php
│ │ ├── index_donutgraph_data.php
│ │ ├── settings_delete_rows.php
│ │ ├── settings_update_rows.php
│ │ ├── taskings_delete_rows.php
│ │ ├── taskings_functs.php
│ │ └── validate.php
│ ├── index.php
│ ├── js
│ │ ├── bootstrap.js
│ │ ├── bootstrap.min.js
│ │ ├── cooltables.js
│ │ ├── dtables.js
│ │ ├── jquery.dataTables.js
│ │ ├── jquery.js
│ │ ├── plugins
│ │ │ └── morris
│ │ │ │ ├── morris-data.js
│ │ │ │ ├── morris.js
│ │ │ │ ├── morris.min.js
│ │ │ │ └── raphael.min.js
│ │ ├── shCore.js
│ │ ├── tabs.js
│ │ └── tasking_functs.js
│ ├── login.php
│ ├── logout.php
│ ├── logs.php
│ ├── outline.php
│ ├── plugins
│ │ └── fa
│ │ │ ├── fonts
│ │ │ ├── FontAwesome.otf
│ │ │ ├── fontawesome-webfont.eot
│ │ │ ├── fontawesome-webfont.svg
│ │ │ ├── fontawesome-webfont.ttf
│ │ │ └── fontawesome-webfont.woff
│ │ │ ├── less
│ │ │ ├── bordered-pulled.less
│ │ │ ├── core.less
│ │ │ ├── fixed-width.less
│ │ │ ├── font-awesome.less
│ │ │ ├── icons.less
│ │ │ ├── larger.less
│ │ │ ├── list.less
│ │ │ ├── mixins.less
│ │ │ ├── path.less
│ │ │ ├── rotated-flipped.less
│ │ │ ├── spinning.less
│ │ │ ├── stacked.less
│ │ │ └── variables.less
│ │ │ └── scss
│ │ │ ├── _bordered-pulled.scss
│ │ │ ├── _core.scss
│ │ │ ├── _fixed-width.scss
│ │ │ ├── _icons.scss
│ │ │ ├── _larger.scss
│ │ │ ├── _list.scss
│ │ │ ├── _mixins.scss
│ │ │ ├── _path.scss
│ │ │ ├── _rotated-flipped.scss
│ │ │ ├── _spinning.scss
│ │ │ ├── _stacked.scss
│ │ │ ├── _variables.scss
│ │ │ └── font-awesome.scss
│ ├── settings.php
│ └── tasking.php
│ ├── robots.txt
│ └── survey.js
├── wlMsgrpc
└── msgrpc.rc
└── zzz_old_v1.x
├── LICENSE.txt
├── README.md
├── create.sql
├── etc
└── apache2
│ ├── ports.conf
│ └── sites-available
│ ├── blog.qu.gs
│ └── qu.gs
├── pw.sql
├── root
└── msgrpc.rc
├── setup.sh
├── tables.sql
└── var
├── mysqli_connect.php
└── www
├── LICENSE.txt
├── e
├── config_e.inc.php
├── php_debug_inc.php
├── php_msfrpc_inc.php
├── template-be.php
├── template-fe.php
└── template-p.php
├── empty.pdf
├── getJavaInfo.jar
├── m
├── css
│ ├── bootstrap.min.css
│ ├── component.css
│ ├── cooltables.css
│ ├── font-awesome.min.css
│ ├── jquery.dataTables.css
│ ├── plugins
│ │ └── morris.css
│ ├── sb-admin.css
│ ├── shCore.css
│ └── tabs.css
├── fonts
│ ├── glyphicons-halflings-regular.eot
│ ├── glyphicons-halflings-regular.svg
│ ├── glyphicons-halflings-regular.ttf
│ └── glyphicons-halflings-regular.woff
├── img
│ └── whitelightning.jpg
├── includes
│ ├── config.inc.php
│ ├── index_bargraph_data.php
│ ├── index_donutgraph_data.php
│ ├── settings_delete_rows.php
│ ├── settings_update_rows.php
│ ├── taskings_delete_rows.php
│ ├── taskings_functs.php
│ └── validate.php
├── index.php
├── js
│ ├── bootstrap.js
│ ├── bootstrap.min.js
│ ├── cooltables.js
│ ├── dtables.js
│ ├── jquery.dataTables.js
│ ├── jquery.js
│ ├── plugins
│ │ └── morris
│ │ │ ├── morris-data.js
│ │ │ ├── morris.js
│ │ │ ├── morris.min.js
│ │ │ └── raphael.min.js
│ ├── shCore.js
│ ├── tabs.js
│ └── tasking_functs.js
├── login.php
├── logout.php
├── logs.php
├── outline.php
├── plugins
│ └── fa
│ │ ├── fonts
│ │ ├── FontAwesome.otf
│ │ ├── fontawesome-webfont.eot
│ │ ├── fontawesome-webfont.svg
│ │ ├── fontawesome-webfont.ttf
│ │ └── fontawesome-webfont.woff
│ │ ├── less
│ │ ├── bordered-pulled.less
│ │ ├── core.less
│ │ ├── fixed-width.less
│ │ ├── font-awesome.less
│ │ ├── icons.less
│ │ ├── larger.less
│ │ ├── list.less
│ │ ├── mixins.less
│ │ ├── path.less
│ │ ├── rotated-flipped.less
│ │ ├── spinning.less
│ │ ├── stacked.less
│ │ └── variables.less
│ │ └── scss
│ │ ├── _bordered-pulled.scss
│ │ ├── _core.scss
│ │ ├── _fixed-width.scss
│ │ ├── _icons.scss
│ │ ├── _larger.scss
│ │ ├── _list.scss
│ │ ├── _mixins.scss
│ │ ├── _path.scss
│ │ ├── _rotated-flipped.scss
│ │ ├── _spinning.scss
│ │ ├── _stacked.scss
│ │ ├── _variables.scss
│ │ └── font-awesome.scss
├── settings.php
└── tasking.php
├── robots.txt
└── survey.js
/.project:
--------------------------------------------------------------------------------
1 |
2 |
This is the default web page for this server.
3 |The web server software is running but no content has been added, yet.
4 | ... 5 | -------------------------------------------------------------------------------- /whiteLightning/www/e/php_debug_inc.php: -------------------------------------------------------------------------------- 1 | '; 46 | 47 | $msgline = '[V] error_reporting is on'; 48 | file_put_contents('debug.log', $msgline, FILE_APPEND | LOCK_EX); 49 | 50 | error_reporting(E_ALL); 51 | ini_set('display_errors', True); 52 | } 53 | } 54 | 55 | // ************ Setting display_errors() ************ // 56 | display_errors($display_errors); 57 | 58 | // ************ debug() ************ // 59 | function debug($msg, $verbose = 1) 60 | { 61 | if($verbose == 1) 62 | { 63 | ////echo ''; 64 | //echo '[V] ' . $msg; 65 | ////echo ''; 66 | //echo ''; 67 | 68 | $msgline = '[V] ' . $msg ."\n"; 69 | file_put_contents('debug.log', $msgline, FILE_APPEND | LOCK_EX); 70 | 71 | } 72 | } 73 | 74 | // ************ debug_r() ************ // 75 | function debug_r($msg, $verbose = 1) 76 | { 77 | if($verbose == 1) 78 | { 79 | ////echo '
'; 80 | //echo '[V] '; 81 | //print_r($msg); 82 | //echo ''; 83 | //echo ''; 84 | 85 | $msgline = '[V] ' . print_r($msg, true) ."\n"; 86 | file_put_contents('debug.log', $msgline, FILE_APPEND | LOCK_EX); 87 | 88 | 89 | } 90 | } 91 | 92 | ?> -------------------------------------------------------------------------------- /whiteLightning/www/e/template-fe.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
This is the default web page for this server.
3 |The web server software is running but no content has been added, yet.
4 | 5 | -------------------------------------------------------------------------------- /whiteLightning/www/m/css/component.css: -------------------------------------------------------------------------------- 1 | /* Header */ 2 | .large-header { 3 | position: relative; 4 | width: 100%; 5 | background: #333; 6 | overflow: hidden; 7 | background-size: cover; 8 | background-position: center center; 9 | z-index: 1; 10 | } 11 | 12 | .main-title { 13 | position: absolute; 14 | margin: 0; 15 | padding: 0; 16 | color: #f9f1e9; 17 | text-align: center; 18 | top: 50%; 19 | left: 50%; 20 | -webkit-transform: translate3d(-50%,-50%,0); 21 | transform: translate3d(-50%,-50%,0); 22 | } 23 | 24 | .demo-2 .main-title { 25 | font-family: 'Clicker Script', cursive; 26 | font-weight: normal; 27 | font-size: 8em; 28 | padding-left: 10px; 29 | text-shadow: 2px 2px 4px rgba(0,0,0,0.4); 30 | } 31 | 32 | .demo-2 .main-title::before { 33 | content: ''; 34 | width: 20vw; 35 | height: 20vw; 36 | min-width: 3.5em; 37 | min-height: 3.5em; 38 | background: url(../img/deco.svg) no-repeat center center; 39 | background-size: cover; 40 | position: absolute; 41 | top: 50%; 42 | left: 50%; 43 | border-radius: 50%; 44 | z-index: -1; 45 | -webkit-transform: translate3d(-50%,-50%,0); 46 | transform: translate3d(-50%,-50%,0); 47 | } 48 | 49 | .main-title .thin { 50 | font-weight: 200; 51 | } 52 | 53 | @media only screen and (max-width : 768px) { 54 | .demo-2 .main-title { 55 | font-size: 4em; 56 | } 57 | } -------------------------------------------------------------------------------- /whiteLightning/www/m/css/cooltables.css: -------------------------------------------------------------------------------- 1 | 2 | @font-face { 3 | /* RaleWay Thin from - https://www.theleagueofmoveabletype.com, Font Squirrel for Web Font creation with "Adjust Glyph Spacing" -50 */ 4 | font-family: 'ralewaythin'; 5 | src: url('font/raleway_thin-webfont.eot'); 6 | src: url('font/raleway_thin-webfont.eot?#iefix') format('embedded-opentype'), 7 | url('font/raleway_thin-webfont.woff') format('woff'), 8 | url('font/raleway_thin-webfont.ttf') format('truetype'); 9 | font-weight: normal; 10 | font-style: normal; 11 | } 12 | 13 | 14 | body { 15 | font: 90%/1.45em "Helvetica Neue", HelveticaNeue, Verdana, Arial, Helvetica, sans-serif; 16 | margin: 0; 17 | padding: 0; 18 | color: #333; 19 | background-color: #fff; 20 | } 21 | 22 | 23 | div.container { 24 | max-width: 980px; 25 | margin: 0 auto; 26 | } 27 | 28 | h1 { 29 | font-family: 'HelveticaNeue-UltraLight', 'Helvetica Neue UltraLight', 'ralewaythin', 'Helvetica Neue', Arial, Helvetica, sans-serif; 30 | font-weight: 100; 31 | letter-spacing: 1px; 32 | font-size: 3em; 33 | line-height: 1em; 34 | } 35 | 36 | h1 span { 37 | font-size: 0.5em; 38 | line-height: 1em; 39 | } 40 | 41 | a { 42 | cursor: pointer; 43 | color: #3174c7; 44 | text-decoration: none; 45 | } 46 | 47 | a:hover { 48 | text-decoration: underline; 49 | } 50 | 51 | div.toc ul { 52 | color: #4E6CA3; 53 | list-style-type: none; 54 | padding-left: 0; 55 | } 56 | 57 | div.toc li { 58 | padding: 0.2em 1em; 59 | border-left: 4px solid transparent; 60 | border-bottom: 1px solid #e6e6e6; 61 | } 62 | 63 | div.toc li.active { 64 | border-left: 4px solid #458ae0; 65 | } 66 | 67 | 68 | div.toc li:first-child { 69 | border-top: 1px solid #efefef; 70 | } 71 | 72 | div.toc li:last-child { 73 | border-bottom: 1px solid #efefef; 74 | } 75 | 76 | 77 | div.epilogue { 78 | text-align: center; 79 | } 80 | 81 | p.copyright { 82 | font-size: 0.8em; 83 | padding-bottom: 2em; 84 | margin-bottom: 0; 85 | } 86 | 87 | .clear { 88 | clear: both; 89 | height: 0; 90 | } 91 | 92 | 93 | div.info { 94 | margin-bottom: 2em; 95 | 96 | -webkit-column-count: 2; 97 | -moz-column-count: 2; 98 | -ms-column-count: 2; 99 | -o-column-count: 2; 100 | column-count: 2; 101 | 102 | 103 | -webkit-column-rule: 1px solid #F3F3F3; 104 | -moz-column-rule: 1px solid #F3F3F3; 105 | -ms-column-rule: 1px solid #F3F3F3; 106 | -o-column-rule: 1px solid #F3F3F3; 107 | column-rule: 1px solid #F3F3F3; 108 | } 109 | 110 | div.info > * { 111 | -webkit-column-break-inside: avoid; 112 | break-inside: avoid; 113 | } 114 | 115 | div.info li { 116 | margin-top: 0.75em; 117 | } 118 | 119 | div.info p:first-child { 120 | margin-top: 0; 121 | } 122 | 123 | div.footer { 124 | position: relative; 125 | margin-top: 3em; 126 | border-top: 1px solid #999; 127 | background-color: #eee; 128 | } 129 | 130 | div.footer > div.liner { 131 | max-width: 960px; 132 | margin: 0 auto; 133 | } 134 | 135 | div.footer > div.gradient { 136 | position: absolute; 137 | top: 0; 138 | left: 0; 139 | width: 100%; 140 | height: 6px; 141 | 142 | background: -moz-linear-gradient(top, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0) 100%); /* FF3.6+ */ 143 | background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0.2)), color-stop(100%,rgba(0,0,0,0))); /* Chrome,Safari4+ */ 144 | background: -webkit-linear-gradient(top, rgba(0,0,0,0.2) 0%,rgba(0,0,0,0) 100%); /* Chrome10+,Safari5.1+ */ 145 | background: -o-linear-gradient(top, rgba(0,0,0,0.2) 0%,rgba(0,0,0,0) 100%); /* Opera 11.10+ */ 146 | background: -ms-linear-gradient(top, rgba(0,0,0,0.2) 0%,rgba(0,0,0,0) 100%); /* IE10+ */ 147 | background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%,rgba(0,0,0,0) 100%); /* W3C */ 148 | filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a6000000', endColorstr='#00000000',GradientType=0 ); /* IE6-9 */ 149 | } 150 | 151 | div.toc { 152 | -webkit-column-count: 2; 153 | -moz-column-count: 2; 154 | -ms-column-count: 2; 155 | -o-column-count: 2; 156 | column-count: 2; 157 | } 158 | 159 | div.toc-group { 160 | display: inline-block; 161 | width: 100%; 162 | } 163 | 164 | div.box { 165 | overflow: auto; 166 | height: 8em; 167 | padding: 1em; 168 | color: #444; 169 | background-color: #fcfcfc; 170 | border: 1px solid #e0e0e0; 171 | margin-bottom: 2em; 172 | } 173 | 174 | 175 | code { 176 | font-family: "Source Code Pro", Consolas, Menlo, Monaco, "Courier New", monospace; 177 | padding: 1px 4px; 178 | font-size: 0.8em; 179 | 180 | color: #444; 181 | background-color: #fcfcfc; 182 | 183 | border: 1px solid #e0e0e0; 184 | -webkit-border-radius: 3px; 185 | -moz-border-radius: 3px; 186 | border-radius: 3px; 187 | } 188 | 189 | code > span { 190 | border-left: 1px solid rgba( 0, 0, 0, 0.2 ); 191 | margin-left: 4px; 192 | padding-left: 4px; 193 | opacity: 0.5; 194 | } 195 | 196 | code.option { 197 | color: #D14; /* red */ 198 | background-color: #fcf6f8; 199 | border: 1px solid #f7d6df; 200 | } 201 | 202 | code.path { 203 | color: #095c05; /* dark green */ 204 | border: 1px solid #D6E9C6; 205 | } 206 | 207 | code.tag { 208 | color: #a1a713; /* yellow */ 209 | background-color: #f7f8e6; 210 | border: 1px solid #D6E9C6; 211 | } 212 | 213 | code.api { 214 | color: #0c199c; /* dark blue */ 215 | background-color: #f4f5fc; 216 | border: 1px solid #c6cbe9; 217 | } 218 | 219 | code.type { 220 | color: #d119cf; /* purple */ 221 | background-color: #faebfa; 222 | border: 1px solid #f3aef2; 223 | } 224 | 225 | code.event { 226 | color: #2a839e; /* deep aqua */ 227 | background-color: #f5fafb; 228 | border: 1px solid #a8ddec; 229 | } 230 | 231 | code.string { 232 | color: #e8941e; /* orange */ 233 | background-color: #fcf8f1; 234 | border: 1px solid #f7e4c9; 235 | } 236 | 237 | code.field { 238 | color: #ad1ee8; /* purple */ 239 | background-color: #f9f1fc; 240 | border: 1px solid #ebc9f7; 241 | } 242 | 243 | code.multiline { 244 | display: inline-block; 245 | width: 95%; 246 | } 247 | 248 | 249 | ul.tabs { 250 | position: relative; 251 | top: 1px; 252 | height: 40px; 253 | margin: 20px 20px 0 0; 254 | } 255 | 256 | 257 | ul.tabs li { 258 | display: block; 259 | float: left; 260 | padding: 0 15px; 261 | height: 40px; 262 | font-size: 1.2em; 263 | margin: 0 5px; 264 | cursor: pointer; 265 | line-height: 40px; 266 | color: #121e32; 267 | border: 1px solid white; 268 | border-bottom: none; 269 | margin-top: -1px; 270 | } 271 | 272 | ul.tabs li.active { 273 | border: 1px solid #ccc; 274 | border-bottom: 1px solid white; 275 | margin-top: 0; 276 | border-top-left-radius: 5px; 277 | border-top-right-radius: 5px; 278 | } 279 | 280 | ul.tabs li:hover { 281 | background-color: #fafafa; 282 | } 283 | 284 | ul.tabs li.active:hover { 285 | background-color: white; 286 | } 287 | 288 | div.tabs { 289 | clear: both; 290 | } 291 | 292 | div.tabs>div { 293 | padding: 0 15px; 294 | border: 1px solid #ccc; 295 | margin-top: 1px; 296 | display: none; 297 | border-radius: 5px; 298 | box-shadow: 2px 2px 2px #bbb; 299 | } 300 | 301 | div.tabs>div h1 { 302 | border-bottom: none; 303 | margin-top: 1em; 304 | } 305 | 306 | div.column_half { 307 | float: left; 308 | width: 49%; 309 | padding-right: 1%; 310 | } 311 | 312 | 313 | @media only screen and (max-width : 979px) { 314 | div.container, 315 | div.footer { 316 | padding: 0 1em; 317 | } 318 | } 319 | 320 | @media 321 | screen and (max-width : 767px), 322 | screen and (max-width : 768px) and (orientation: portrait) { 323 | div.info { 324 | -webkit-column-count: 1; 325 | -moz-column-count: 1; 326 | -ms-column-count: 1; 327 | -o-column-count: 1; 328 | column-count: 1; 329 | } 330 | 331 | div.toc { 332 | -webkit-column-count: 1; 333 | -moz-column-count: 1; 334 | -ms-column-count: 1; 335 | -o-column-count: 1; 336 | column-count: 1; 337 | } 338 | 339 | h1 span { 340 | display: block; 341 | } 342 | } 343 | 344 | -------------------------------------------------------------------------------- /whiteLightning/www/m/css/plugins/morris.css: -------------------------------------------------------------------------------- 1 | .morris-hover{position:absolute;z-index:1000}.morris-hover.morris-default-style{border-radius:10px;padding:6px;color:#666;background:rgba(255,255,255,0.8);border:solid 2px rgba(230,230,230,0.8);font-family:sans-serif;font-size:12px;text-align:center}.morris-hover.morris-default-style .morris-hover-row-label{font-weight:bold;margin:0.25em 0} 2 | .morris-hover.morris-default-style .morris-hover-point{white-space:nowrap;margin:0.1em 0} 3 | -------------------------------------------------------------------------------- /whiteLightning/www/m/css/sb-admin.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Start Bootstrap - SB Admin Bootstrap Admin Template (http://startbootstrap.com) 3 | * Code licensed under the Apache License v2.0. 4 | * For details, see http://www.apache.org/licenses/LICENSE-2.0. 5 | */ 6 | 7 | /* Global Styles */ 8 | 9 | body { 10 | margin-top: 100px; 11 | background-color: #222; 12 | } 13 | 14 | @media(min-width:768px) { 15 | body { 16 | margin-top: 50px; 17 | } 18 | } 19 | 20 | #wrapper { 21 | padding-left: 0; 22 | } 23 | 24 | #page-wrapper { 25 | width: 100%; 26 | padding: 0; 27 | background-color: #fff; 28 | } 29 | 30 | .huge { 31 | font-size: 50px; 32 | line-height: normal; 33 | } 34 | 35 | @media(min-width:768px) { 36 | #wrapper { 37 | padding-left: 225px; 38 | } 39 | 40 | #page-wrapper { 41 | padding: 10px; 42 | } 43 | } 44 | 45 | /* Top Navigation */ 46 | 47 | .top-nav { 48 | padding: 0 15px; 49 | } 50 | 51 | .top-nav>li { 52 | display: inline-block; 53 | float: left; 54 | } 55 | 56 | .top-nav>li>a { 57 | padding-top: 15px; 58 | padding-bottom: 15px; 59 | line-height: 20px; 60 | color: #999; 61 | } 62 | 63 | .top-nav>li>a:hover, 64 | .top-nav>li>a:focus, 65 | .top-nav>.open>a, 66 | .top-nav>.open>a:hover, 67 | .top-nav>.open>a:focus { 68 | color: #fff; 69 | background-color: #000; 70 | } 71 | 72 | .top-nav>.open>.dropdown-menu { 73 | float: left; 74 | position: absolute; 75 | margin-top: 0; 76 | border: 1px solid rgba(0,0,0,.15); 77 | border-top-left-radius: 0; 78 | border-top-right-radius: 0; 79 | background-color: #fff; 80 | -webkit-box-shadow: 0 6px 12px rgba(0,0,0,.175); 81 | box-shadow: 0 6px 12px rgba(0,0,0,.175); 82 | } 83 | 84 | .top-nav>.open>.dropdown-menu>li>a { 85 | white-space: normal; 86 | } 87 | 88 | ul.message-dropdown { 89 | padding: 0; 90 | max-height: 250px; 91 | overflow-x: hidden; 92 | overflow-y: auto; 93 | } 94 | 95 | li.message-preview { 96 | width: 275px; 97 | border-bottom: 1px solid rgba(0,0,0,.15); 98 | } 99 | 100 | li.message-preview>a { 101 | padding-top: 15px; 102 | padding-bottom: 15px; 103 | } 104 | 105 | li.message-footer { 106 | margin: 5px 0; 107 | } 108 | 109 | ul.alert-dropdown { 110 | width: 200px; 111 | } 112 | 113 | /* Side Navigation */ 114 | 115 | @media(min-width:768px) { 116 | .side-nav { 117 | position: fixed; 118 | top: 51px; 119 | left: 225px; 120 | width: 225px; 121 | margin-left: -225px; 122 | border: none; 123 | border-radius: 0; 124 | overflow-y: auto; 125 | background-color: #222; 126 | } 127 | 128 | .side-nav>li>a { 129 | width: 225px; 130 | } 131 | 132 | .side-nav li a:hover, 133 | .side-nav li a:focus { 134 | outline: none; 135 | background-color: #000 !important; 136 | } 137 | } 138 | 139 | .side-nav>li>ul { 140 | padding: 0; 141 | } 142 | 143 | .side-nav>li>ul>li>a { 144 | display: block; 145 | padding: 10px 15px 10px 38px; 146 | text-decoration: none; 147 | color: #999; 148 | } 149 | 150 | .side-nav>li>ul>li>a:hover { 151 | color: #fff; 152 | } 153 | 154 | /* Flot Chart Containers */ 155 | 156 | .flot-chart { 157 | display: block; 158 | height: 400px; 159 | } 160 | 161 | .flot-chart-content { 162 | width: 100%; 163 | height: 100%; 164 | } 165 | 166 | /* Custom Colored Panels */ 167 | 168 | .huge { 169 | font-size: 40px; 170 | } 171 | 172 | .panel-green { 173 | border-color: #5cb85c; 174 | } 175 | 176 | .panel-green .panel-heading { 177 | border-color: #5cb85c; 178 | color: #fff; 179 | background-color: #5cb85c; 180 | } 181 | 182 | .panel-green a { 183 | color: #5cb85c; 184 | } 185 | 186 | .panel-green a:hover { 187 | color: #3d8b3d; 188 | } 189 | 190 | .panel-red { 191 | border-color: #d9534f; 192 | } 193 | 194 | .panel-red .panel-heading { 195 | border-color: #d9534f; 196 | color: #fff; 197 | background-color: #d9534f; 198 | } 199 | 200 | .panel-red a { 201 | color: #d9534f; 202 | } 203 | 204 | .panel-red a:hover { 205 | color: #b52b27; 206 | } 207 | 208 | .panel-yellow { 209 | border-color: #f0ad4e; 210 | } 211 | 212 | .panel-yellow .panel-heading { 213 | border-color: #f0ad4e; 214 | color: #fff; 215 | background-color: #f0ad4e; 216 | } 217 | 218 | .panel-yellow a { 219 | color: #f0ad4e; 220 | } 221 | 222 | .panel-yellow a:hover { 223 | color: #df8a13; 224 | } -------------------------------------------------------------------------------- /whiteLightning/www/m/css/tabs.css: -------------------------------------------------------------------------------- 1 | /*----- Tabs -----*/ 2 | .tabs { 3 | width:100%; 4 | display:inline-block; 5 | } 6 | 7 | /*----- Tab Links -----*/ 8 | /* Clearfix */ 9 | .tab-links:after { 10 | display:block; 11 | clear:both; 12 | content:''; 13 | } 14 | 15 | .tab-links li { 16 | margin:0px 5px; 17 | float:left; 18 | list-style:none; 19 | } 20 | 21 | .tab-links a { 22 | padding:9px 15px; 23 | display:inline-block; 24 | border-radius:3px 3px 0px 0px; 25 | background:#fff; 26 | font-size:16px; 27 | font-weight:600; 28 | color:#4c4c4c; 29 | transition:all linear 0.15s; 30 | } 31 | 32 | .tab-links a:hover { 33 | background:#a7cce5; 34 | text-decoration:none; 35 | } 36 | 37 | li.active a, li.active a:hover { 38 | 39 | background:#7FB5DA; 40 | color:#4c4c4c; 41 | } 42 | 43 | /*----- Content of Tabs -----*/ 44 | .tab-content { 45 | padding:15px; 46 | border-radius:3px; 47 | box-shadow:-1px 1px 1px rgba(0,0,0,0.15); 48 | background:#fff; 49 | } 50 | 51 | .tab { 52 | display:none; 53 | } 54 | 55 | .tab.active { 56 | display:block; 57 | } -------------------------------------------------------------------------------- /whiteLightning/www/m/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TweekFawkes/White_Lightning/43fd24eb945d436bc739ce3eb11a54410e1c54d0/whiteLightning/www/m/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /whiteLightning/www/m/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TweekFawkes/White_Lightning/43fd24eb945d436bc739ce3eb11a54410e1c54d0/whiteLightning/www/m/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /whiteLightning/www/m/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TweekFawkes/White_Lightning/43fd24eb945d436bc739ce3eb11a54410e1c54d0/whiteLightning/www/m/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /whiteLightning/www/m/img/whitelightning.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TweekFawkes/White_Lightning/43fd24eb945d436bc739ce3eb11a54410e1c54d0/whiteLightning/www/m/img/whitelightning.jpg -------------------------------------------------------------------------------- /whiteLightning/www/m/includes/config.inc.php: -------------------------------------------------------------------------------- 1 | An error occurred in script '$e_file' on line $e_line: $e_message\n" . print_r ($e_vars, 1) . "\n"; 21 | 22 | if (!LIVE) { // Development (print the error). 23 | 24 | echo '