style.css 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369
  1. /*
  2. * Copyright (c) 2016, 2024, 5 Mode
  3. * All rights reserved.
  4. *
  5. * This file is part of Avatar Free.
  6. *
  7. * Avatar Free is free software: you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation, either version 3 of the License, or
  10. * (at your option) any later version.
  11. *
  12. * Avatar Free is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with Avatar Free. If not, see <https://www.gnu.org/licenses/>.
  19. * config.inc
  20. *
  21. * Avatar Free style sheet.
  22. *
  23. * @author Daniele Bonini <my25mb@aol.com>
  24. * @copyrights (c) 2021, 2024, 5 Mode
  25. */
  26. @import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');
  27. body {
  28. margin-top:20px;
  29. /*background: #C2DBF2;*/
  30. background-image:url('/res/bg1.jpg');
  31. }
  32. #appMenuIco {
  33. float:left;
  34. position:relative;
  35. top:1px;
  36. left:-20px;
  37. cursor: pointer;
  38. }
  39. .app-Menu {
  40. float:left;
  41. position:relative;
  42. width: 150px;
  43. top:+43px;
  44. left:+22px;
  45. background:#313431;
  46. cursor: pointer;
  47. }
  48. .buttondisplaylist {
  49. float:right;
  50. position:relative;
  51. left:-10px;
  52. top:+2px;
  53. background-color:transparent;
  54. border:0px;
  55. }
  56. .element {
  57. width:80%;
  58. margin:auto;
  59. background-color:#FFFFFF;
  60. border: 3px solid gray;
  61. height:fit-content;
  62. margin-bottom:0px;
  63. }
  64. .element-ghost {
  65. width:80%;
  66. margin:auto;
  67. background-color:#FFFFFF;
  68. border: 3px dashed lightgray;
  69. height:fit-content;
  70. margin-bottom:20px;
  71. }
  72. .eltxtfield0 {
  73. width:98%;
  74. font-size: 34px;
  75. border-radius:5px;
  76. border:1px solid darkgray;
  77. }
  78. .eltxtfield {
  79. width:98%;
  80. font-size: 34px;
  81. border-radius:5px;
  82. border:1px solid darkgray;
  83. border-right:0px;
  84. color: #444;
  85. }
  86. .eltxtarea {
  87. padding-left:20px;
  88. padding-right:20px;
  89. }
  90. .eltitle {
  91. width:100%;
  92. height:33px;
  93. background-color:gray;
  94. color:#FFFFFF;
  95. }
  96. .eltitleghost {
  97. width:100%;
  98. height:33px;
  99. background-color:lightgray;
  100. color:#FFFFFF;
  101. }
  102. #fileList {
  103. position:absolute;
  104. top:-0px;
  105. left:-5px;
  106. width:450px;
  107. height:482px;
  108. display:none;
  109. }
  110. #footerCont {
  111. position: fixed;
  112. top: 2000px;
  113. left:-10px;
  114. width: 102%;
  115. border: 1px solid #C2DBF2;
  116. padding: 7px;
  117. background: white;
  118. opacity: 0.3;
  119. color:white;
  120. font-family: Arial, Sans, Verdana;
  121. font-size: 12px;
  122. text-align: center;
  123. z-index: 99998;
  124. }
  125. #footer {
  126. position: fixed;
  127. float: right;
  128. top: 2000px;
  129. left:-10px;
  130. width: 100%;
  131. border: 0px solid #C2DBF2;
  132. padding: 7px;
  133. opacity: 1.0;
  134. color:black;
  135. font-family: Arial, Sans, Verdana;
  136. font-size: 12px;
  137. font-weight: 400;
  138. text-align: right;
  139. z-index: 99999;
  140. }
  141. #notBoughties {
  142. display:none;
  143. }
  144. .lanelist {
  145. margin-top:12px;
  146. margin-right:38px;
  147. margin-left:38px;
  148. }
  149. .lanelistcyan {
  150. background-color: cyan;
  151. }
  152. .lanelistorange {
  153. background-color: orange;
  154. }
  155. .lanelistwhite {
  156. background-color: white;
  157. }
  158. .lanelistred {
  159. background-color: #f87552;
  160. }
  161. .lanelistyellow {
  162. background-color: yellow;
  163. }
  164. .lanelistgray {
  165. background-color: darkgray;
  166. }
  167. .lanelistgreen {
  168. background-color: green;
  169. }
  170. .lanelistblack {
  171. background-color: black;
  172. }
  173. .lanelistblue {
  174. background-color: blue;
  175. }
  176. .lanelistlightgreen {
  177. background-color: lightgreen;
  178. }
  179. .lanelistyellow {
  180. background-color: yellow;
  181. }
  182. .listcont {
  183. position:relative;
  184. width:450px;
  185. margin-top:20px;
  186. /* margin-left:1.2%;
  187. margin-bottom:80px;*/
  188. margin:auto;
  189. }
  190. .listcontr {
  191. float:left;
  192. width:30%;
  193. margin-top:20px;
  194. margin-left:1.2%;
  195. margin-bottom:80px;
  196. }
  197. .list {
  198. float:left;
  199. width:100%;
  200. padding:5px;
  201. text-align:center;
  202. margin-bottom:20px;
  203. }
  204. .listred {
  205. background-color: #f87552;
  206. }
  207. .listdarkred {
  208. background-color: darkred;
  209. }
  210. .listred-title {
  211. /*color:#00417c;*/
  212. color: #666666;
  213. }
  214. .listyellow {
  215. background-color: yellow;
  216. }
  217. .listyellow-title {
  218. /*color:#00417c;*/
  219. color: #666666;
  220. }
  221. .listgray {
  222. background-color: darkgray;
  223. }
  224. .listgray-title {
  225. color:#444;
  226. }
  227. .listgreen {
  228. background-color: lightgreen;
  229. }
  230. .listgreen-title {
  231. color: greenyellow;
  232. }
  233. .listblack {
  234. background-color: black;
  235. }
  236. .listwhite-title {
  237. color: #FFFFFF;
  238. }
  239. .listblue {
  240. background-color: blue;
  241. }
  242. .listcyan-title {
  243. color: cyan;
  244. }
  245. .listorange-title {
  246. color: orange;
  247. }
  248. .listlightgreen {
  249. background-color: lightgreen;
  250. }
  251. .listdarkgreen-title {
  252. color: darkgreen;
  253. }
  254. .listyellow {
  255. background-color: yellow;
  256. }
  257. .listred-title {
  258. color: red;
  259. }
  260. .listel {
  261. width:100%;
  262. height:fit-content;
  263. text-align:center;
  264. padding-top:20px;
  265. padding-bottom:50px;
  266. }
  267. .no-drop {
  268. cursor: not-allowed;
  269. }
  270. .no-dropzone {
  271. cursor: not-allowed;
  272. }
  273. #pagetitle {
  274. float:left;
  275. width:100%;
  276. height:70px;
  277. padding:5px;
  278. text-align:center;
  279. margin-bottom:20px;
  280. background-color:#3366ff;
  281. color:#FFFFFF;
  282. opacity:0.8;
  283. font-family:'Indie Flower';
  284. font-size:30px;
  285. font-style:italic;
  286. font-weight:900;
  287. position:relative;
  288. top:-60px;
  289. /*color:#5e383a;*/
  290. }
  291. .prodel {
  292. text-align:left;
  293. padding:36px;
  294. padding-top:7px;
  295. padding-right:16px;
  296. color:#444;
  297. font-weight:900;
  298. }
  299. .prodlist {
  300. padding-top:6px;
  301. }
  302. .prodname {
  303. width:45%;
  304. float:left;
  305. padding-top:8px;
  306. border-bottom:1px dotted darkgray;
  307. }
  308. .prodprice {
  309. width:20%;
  310. float:left;
  311. padding-top:8px;
  312. }
  313. .prodaction {
  314. width:17%;
  315. float:left;
  316. cursor:pointer;
  317. text-align:center;
  318. margin:auto;
  319. }
  320. .prodactionimg {
  321. position:relative;
  322. left:+10px;
  323. margin-bottom:7px;
  324. width:42px;
  325. }
  326. #carties {
  327. display: none;
  328. }
  329. #results {
  330. display: none;
  331. }
  332. .titlelane {
  333. text-align:left;
  334. margin-bottom:8px;
  335. font-weight:900;
  336. text-align:left;
  337. }
  338. .titlelanecyan {
  339. color:darkcyan;
  340. }
  341. .titlelanered {
  342. color:darkred;
  343. }
  344. .titlelaneblack {
  345. color:black;
  346. }
  347. .titlelanered {
  348. color: red;
  349. }
  350. .titlelaneyellow {
  351. color: yellow;
  352. }
  353. .titlelanegray {
  354. color: #444;
  355. }
  356. .titlelanegreen {
  357. color: greenyellow;
  358. }
  359. .titlelanewhite {
  360. color: #FFFFFF;
  361. }
  362. .titlelaneorange {
  363. color: orange;
  364. }
  365. .titlelanedarkgreen {
  366. color: darkgreen;
  367. }