style.css 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372
  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. #AFHint {
  49. display:inline;
  50. }
  51. .buttondisplaylist {
  52. float:right;
  53. position:relative;
  54. left:-10px;
  55. top:+2px;
  56. background-color:transparent;
  57. border:0px;
  58. }
  59. .element {
  60. width:80%;
  61. margin:auto;
  62. background-color:#FFFFFF;
  63. border: 3px solid gray;
  64. height:fit-content;
  65. margin-bottom:0px;
  66. }
  67. .element-ghost {
  68. width:80%;
  69. margin:auto;
  70. background-color:#FFFFFF;
  71. border: 3px dashed lightgray;
  72. height:fit-content;
  73. margin-bottom:20px;
  74. }
  75. .eltxtfield0 {
  76. width:98%;
  77. font-size: 34px;
  78. border-radius:5px;
  79. border:1px solid darkgray;
  80. }
  81. .eltxtfield {
  82. width:98%;
  83. font-size: 34px;
  84. border-radius:5px;
  85. border:1px solid darkgray;
  86. border-right:0px;
  87. color: #444;
  88. }
  89. .eltxtarea {
  90. padding-left:20px;
  91. padding-right:20px;
  92. }
  93. .eltitle {
  94. width:100%;
  95. height:33px;
  96. background-color:gray;
  97. color:#FFFFFF;
  98. }
  99. .eltitleghost {
  100. width:100%;
  101. height:33px;
  102. background-color:lightgray;
  103. color:#FFFFFF;
  104. }
  105. #fileList {
  106. position:absolute;
  107. top:-0px;
  108. left:-5px;
  109. width:450px;
  110. height:482px;
  111. display:none;
  112. }
  113. #footerCont {
  114. position: fixed;
  115. top: 2000px;
  116. left:-10px;
  117. width: 102%;
  118. border: 1px solid #C2DBF2;
  119. padding: 7px;
  120. background: white;
  121. opacity: 0.3;
  122. color:white;
  123. font-family: Arial,Sans,Vardana;
  124. font-size: 12px;
  125. text-align: center;
  126. z-index: 99998;
  127. }
  128. #footer {
  129. position: fixed;
  130. float: right;
  131. top: 2000px;
  132. left:-10px;
  133. width: 100%;
  134. border: 0px solid #C2DBF2;
  135. padding: 7px;
  136. opacity: 1.0;
  137. color:black;
  138. font-family: Arial,Sans,Vardana;
  139. font-size: 12px;
  140. font-weight: 400;
  141. text-align: right;
  142. z-index: 99999;
  143. }
  144. #notBoughties {
  145. display:none;
  146. }
  147. .lanelist {
  148. margin-top:12px;
  149. margin-right:38px;
  150. margin-left:38px;
  151. }
  152. .lanelistcyan {
  153. background-color: cyan;
  154. }
  155. .lanelistorange {
  156. background-color: orange;
  157. }
  158. .lanelistwhite {
  159. background-color: white;
  160. }
  161. .lanelistred {
  162. background-color: #f87552;
  163. }
  164. .lanelistyellow {
  165. background-color: yellow;
  166. }
  167. .lanelistgray {
  168. background-color: darkgray;
  169. }
  170. .lanelistgreen {
  171. background-color: green;
  172. }
  173. .lanelistblack {
  174. background-color: black;
  175. }
  176. .lanelistblue {
  177. background-color: blue;
  178. }
  179. .lanelistlightgreen {
  180. background-color: lightgreen;
  181. }
  182. .lanelistyellow {
  183. background-color: yellow;
  184. }
  185. .listcont {
  186. position:relative;
  187. width:450px;
  188. margin-top:20px;
  189. /* margin-left:1.2%;
  190. margin-bottom:80px;*/
  191. margin:auto;
  192. }
  193. .listcontr {
  194. float:left;
  195. width:30%;
  196. margin-top:20px;
  197. margin-left:1.2%;
  198. margin-bottom:80px;
  199. }
  200. .list {
  201. float:left;
  202. width:100%;
  203. padding:5px;
  204. text-align:center;
  205. margin-bottom:20px;
  206. }
  207. .listred {
  208. background-color: #f87552;
  209. }
  210. .listdarkred {
  211. background-color: darkred;
  212. }
  213. .listred-title {
  214. /*color:#00417c;*/
  215. color: #666666;
  216. }
  217. .listyellow {
  218. background-color: yellow;
  219. }
  220. .listyellow-title {
  221. /*color:#00417c;*/
  222. color: #666666;
  223. }
  224. .listgray {
  225. background-color: darkgray;
  226. }
  227. .listgray-title {
  228. color:#444;
  229. }
  230. .listgreen {
  231. background-color: lightgreen;
  232. }
  233. .listgreen-title {
  234. color: greenyellow;
  235. }
  236. .listblack {
  237. background-color: black;
  238. }
  239. .listwhite-title {
  240. color: #FFFFFF;
  241. }
  242. .listblue {
  243. background-color: blue;
  244. }
  245. .listcyan-title {
  246. color: cyan;
  247. }
  248. .listorange-title {
  249. color: orange;
  250. }
  251. .listlightgreen {
  252. background-color: lightgreen;
  253. }
  254. .listdarkgreen-title {
  255. color: darkgreen;
  256. }
  257. .listyellow {
  258. background-color: yellow;
  259. }
  260. .listred-title {
  261. color: red;
  262. }
  263. .listel {
  264. width:100%;
  265. height:fit-content;
  266. text-align:center;
  267. padding-top:20px;
  268. padding-bottom:50px;
  269. }
  270. .no-drop {
  271. cursor: not-allowed;
  272. }
  273. .no-dropzone {
  274. cursor: not-allowed;
  275. }
  276. #pagetitle {
  277. float:left;
  278. width:100%;
  279. height:70px;
  280. padding:5px;
  281. text-align:center;
  282. margin-bottom:20px;
  283. background-color:#3366ff;
  284. color:#FFFFFF;
  285. opacity:0.8;
  286. font-family:'Indie Flower';
  287. font-size:30px;
  288. font-style:italic;
  289. font-weight:900;
  290. position:relative;
  291. top:-60px;
  292. /*color:#5e383a;*/
  293. }
  294. .prodel {
  295. text-align:left;
  296. padding:36px;
  297. padding-top:7px;
  298. padding-right:16px;
  299. color:#444;
  300. font-weight:900;
  301. }
  302. .prodlist {
  303. padding-top:6px;
  304. }
  305. .prodname {
  306. width:45%;
  307. float:left;
  308. padding-top:8px;
  309. border-bottom:1px dotted darkgray;
  310. }
  311. .prodprice {
  312. width:20%;
  313. float:left;
  314. padding-top:8px;
  315. }
  316. .prodaction {
  317. width:17%;
  318. float:left;
  319. cursor:pointer;
  320. text-align:center;
  321. margin:auto;
  322. }
  323. .prodactionimg {
  324. position:relative;
  325. left:+10px;
  326. margin-bottom:7px;
  327. width:42px;
  328. }
  329. #carties {
  330. display: none;
  331. }
  332. #results {
  333. display: none;
  334. }
  335. .titlelane {
  336. text-align:left;
  337. margin-bottom:8px;
  338. font-weight:900;
  339. text-align:left;
  340. }
  341. .titlelanecyan {
  342. color:darkcyan;
  343. }
  344. .titlelanered {
  345. color:darkred;
  346. }
  347. .titlelaneblack {
  348. color:black;
  349. }
  350. .titlelanered {
  351. color: red;
  352. }
  353. .titlelaneyellow {
  354. color: yellow;
  355. }
  356. .titlelanegray {
  357. color: #444;
  358. }
  359. .titlelanegreen {
  360. color: greenyellow;
  361. }
  362. .titlelanewhite {
  363. color: #FFFFFF;
  364. }
  365. .titlelaneorange {
  366. color: orange;
  367. }
  368. .titlelanedarkgreen {
  369. color: darkgreen;
  370. }