style.css 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700
  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. width:100%;
  50. height:fit-content;
  51. position:fixed;
  52. top:-5px;
  53. background:yellow;
  54. color:darkorange;
  55. text-align:center;
  56. cursor:pointer;
  57. display:inline;
  58. z-index:99999;
  59. }
  60. #avatarLogo {
  61. float:left;
  62. width:255px;
  63. height:255px;
  64. }
  65. #avatarName {
  66. width:250px;
  67. height:255px;
  68. padding-top:122px;
  69. float:left;
  70. border:0px solid yellow;
  71. vertical-align:middle;
  72. }
  73. #blog {
  74. height:fit-content;
  75. float:left;
  76. margin:6%;
  77. margin-top:130px;
  78. margin-bottom:5px;
  79. width:90%;
  80. font-size:15px;
  81. font-family:'Press Start 2P';
  82. color:#000000;
  83. }
  84. .blog-content {
  85. width:100%;
  86. float:left;
  87. border:3px solid darkgray;
  88. border-radius:4px;
  89. color:#000000;
  90. }
  91. .blog-entry {
  92. width:100%;
  93. margin-bottom:0px;
  94. min-height:120px;
  95. background:#FFFFFF;
  96. border:1px solid black;
  97. padding:30px;
  98. text-align:left;
  99. }
  100. .buttondisplaylist {
  101. float:right;
  102. position:relative;
  103. left:-10px;
  104. top:+2px;
  105. background-color:transparent;
  106. border:0px;
  107. }
  108. #cbLang {
  109. margin-left:22px;
  110. font-size:10px;
  111. }
  112. #cudoz {
  113. width:250px;
  114. height:255px;
  115. padding-top:116px;
  116. float:left;border:0px solid green;
  117. vertical-align:middle;
  118. }
  119. .cudoz-entry {
  120. float:left;
  121. width:46px
  122. }
  123. .cv-entry {
  124. float:left;
  125. width:64px
  126. }
  127. #cvs {
  128. float:right;
  129. border:3px solid darkgray;
  130. border-radius:4px;
  131. padding:4px;
  132. background:#dadada;
  133. font-size:20px;
  134. font-family:'Press Start 2P';
  135. font-weight:900;
  136. }
  137. .dragover {
  138. width:100%;
  139. height:100%;
  140. }
  141. .element {
  142. width:80%;
  143. margin:auto;
  144. background-color:#FFFFFF;
  145. border: 3px solid gray;
  146. height:fit-content;
  147. margin-bottom:0px;
  148. }
  149. .element-ghost {
  150. width:80%;
  151. margin:auto;
  152. background-color:#FFFFFF;
  153. border: 3px dashed lightgray;
  154. height:fit-content;
  155. margin-bottom:20px;
  156. }
  157. .eltxtfield0 {
  158. width:98%;
  159. font-size: 34px;
  160. border-radius:5px;
  161. border:1px solid darkgray;
  162. }
  163. .eltxtfield {
  164. width:98%;
  165. font-size: 34px;
  166. border-radius:5px;
  167. border:1px solid darkgray;
  168. border-right:0px;
  169. color: #444;
  170. }
  171. .eltxtarea {
  172. padding-left:20px;
  173. padding-right:20px;
  174. }
  175. .eltitle {
  176. width:100%;
  177. height:33px;
  178. background-color:gray;
  179. color:#FFFFFF;
  180. }
  181. .eltitleghost {
  182. width:100%;
  183. height:33px;
  184. background-color:lightgray;
  185. color:#FFFFFF;
  186. }
  187. .file-entry {
  188. height:fit-content;
  189. min-height:120px;
  190. float:left;
  191. width:fit-content;
  192. border:0px solid green;
  193. padding:10px;
  194. text-align:center;
  195. }
  196. .file-ico {
  197. width:64px;
  198. border:0px solid gray;
  199. }
  200. #fileList {
  201. position:absolute;
  202. top:-0px;
  203. left:-5px;
  204. width:450px;
  205. height:482px;
  206. display:none;
  207. }
  208. #footerCont {
  209. position: fixed;
  210. top: 2000px;
  211. left:-10px;
  212. width: 102%;
  213. border: 1px solid #C2DBF2;
  214. padding: 7px;
  215. background: white;
  216. opacity: 0.3;
  217. color:white;
  218. font-family: Arial,Sans,Vardana;
  219. font-size: 12px;
  220. text-align: center;
  221. z-index: 99998;
  222. }
  223. #footer {
  224. position: fixed;
  225. float: right;
  226. top: 2000px;
  227. left:-10px;
  228. width: 100%;
  229. border: 0px solid #C2DBF2;
  230. padding: 7px;
  231. opacity: 1.0;
  232. color:black;
  233. font-family: Arial,Sans,Vardana;
  234. font-size: 12px;
  235. font-weight: 400;
  236. text-align: right;
  237. z-index: 99999;
  238. }
  239. #friends {
  240. float:left;
  241. margin:6%;
  242. margin-top:50px;
  243. width:90%;
  244. font-size:15px;
  245. font-family:Arial,Sans,Verdana;
  246. color:#000000;
  247. background:#dadada
  248. }
  249. .friends-content {
  250. width:100%;
  251. float:left;
  252. border:3px solid transparent;
  253. border-radius:4px;
  254. color:#000000;
  255. padding-top:10px;
  256. text-align:center;
  257. }
  258. .friend-entry {
  259. height:fit-content;
  260. min-height:120px;
  261. float:left;
  262. width:fit-content;
  263. border:0px solid green;
  264. padding:10px;
  265. text-align:center;
  266. }
  267. .friend-ico {
  268. width:64px;
  269. border:0px solid gray;
  270. }
  271. #gallery {
  272. float:left;
  273. margin:6%;
  274. margin-top:0px;
  275. margin-bottom:5px;
  276. width:90%;
  277. font-size:15px;
  278. font-family:Arial,Sans,Verdana;
  279. color:#000000;
  280. background:#C2DBF2;
  281. }
  282. .gallery-content {
  283. width:100%;
  284. float:left;
  285. border:3px solid darkgray;
  286. border-radius:4px;
  287. color:#000000;
  288. }
  289. #hashMe {
  290. position:relative;
  291. left:-2px;
  292. top:+5px;
  293. font-size:18px;
  294. font-weight:900;
  295. color:#000000;
  296. }
  297. .image-entry {
  298. height:fit-content;
  299. min-height:120px;
  300. float:left;
  301. width:fit-content;
  302. border:0px solid green;
  303. padding:10px;
  304. text-align:center;
  305. }
  306. .image-ico {
  307. width:64px;
  308. border:1px solid gray;
  309. }
  310. #mynetworkTitle {
  311. font-family:'Press Start 2P';
  312. width:fit-content;
  313. margin:auto;
  314. color:#245269;
  315. }
  316. #notBoughties {
  317. display:none;
  318. }
  319. .lanelist {
  320. margin-top:12px;
  321. margin-right:38px;
  322. margin-left:38px;
  323. }
  324. .lanelistcyan {
  325. background-color: cyan;
  326. }
  327. .lanelistorange {
  328. background-color: orange;
  329. }
  330. .lanelistwhite {
  331. background-color: white;
  332. }
  333. .lanelistred {
  334. background-color: #f87552;
  335. }
  336. .lanelistyellow {
  337. background-color: yellow;
  338. }
  339. .lanelistgray {
  340. background-color: darkgray;
  341. }
  342. .lanelistgreen {
  343. background-color: green;
  344. }
  345. .lanelistblack {
  346. background-color: black;
  347. }
  348. .lanelistblue {
  349. background-color: blue;
  350. }
  351. .lanelistlightgreen {
  352. background-color: lightgreen;
  353. }
  354. .lanelistyellow {
  355. background-color: yellow;
  356. }
  357. .listcont {
  358. position:relative;
  359. width:450px;
  360. margin-top:20px;
  361. /* margin-left:1.2%;
  362. margin-bottom:80px;*/
  363. margin:auto;
  364. }
  365. .listcontr {
  366. float:left;
  367. width:30%;
  368. margin-top:20px;
  369. margin-left:1.2%;
  370. margin-bottom:80px;
  371. }
  372. .list {
  373. float:left;
  374. width:100%;
  375. padding:5px;
  376. text-align:center;
  377. margin-bottom:20px;
  378. }
  379. .listred {
  380. background-color: #f87552;
  381. }
  382. .listdarkred {
  383. background-color: darkred;
  384. }
  385. .listred-title {
  386. /*color:#00417c;*/
  387. color: #666666;
  388. }
  389. .listyellow {
  390. background-color: yellow;
  391. }
  392. .listyellow-title {
  393. /*color:#00417c;*/
  394. color: #666666;
  395. }
  396. .listgray {
  397. background-color: darkgray;
  398. }
  399. .listgray-title {
  400. color:#444;
  401. }
  402. .listgreen {
  403. background-color: lightgreen;
  404. }
  405. .listgreen-title {
  406. color: greenyellow;
  407. }
  408. .listblack {
  409. background-color: black;
  410. }
  411. .listwhite-title {
  412. color: #FFFFFF;
  413. }
  414. .listblue {
  415. background-color: blue;
  416. }
  417. .listcyan-title {
  418. color: cyan;
  419. }
  420. .listorange-title {
  421. color: orange;
  422. }
  423. .listlightgreen {
  424. background-color: lightgreen;
  425. }
  426. .listdarkgreen-title {
  427. color: darkgreen;
  428. }
  429. .listyellow {
  430. background-color: yellow;
  431. }
  432. .listred-title {
  433. color: red;
  434. }
  435. .listel {
  436. width:100%;
  437. height:fit-content;
  438. text-align:center;
  439. padding-top:20px;
  440. padding-bottom:50px;
  441. }
  442. #magicjar1 {
  443. float:left;
  444. margin:6%;
  445. margin-top:0px;
  446. margin-bottom:5px;
  447. width:90%;
  448. font-size:15px;
  449. font-family:Arial,Sans,Verdana;
  450. color:#000000;
  451. background:#f7ecb5;
  452. }
  453. .magicjar1 {
  454. float:left;
  455. width:120px;
  456. height:120px;
  457. background-size:120px 120px;
  458. cursor:pointer;
  459. }
  460. .magicjar1-content {
  461. width:100%;
  462. float:left;
  463. border:3px solid darkgray;
  464. border-radius:4px;
  465. color:#000000;
  466. }
  467. .magicjar2 {
  468. float:left;
  469. width:120px;
  470. height:120px;
  471. background-size:120px 120px;
  472. cursor:pointer;
  473. }
  474. #magicjar2 {
  475. float:left;
  476. margin:6%;
  477. margin-top:0px;
  478. margin-bottom:5px;
  479. width:90%;
  480. font-size:15px;
  481. font-family:Arial,Sans,Verdana;
  482. color:#000000;
  483. background:#f7ecb5;
  484. }
  485. .magicjar2-content {
  486. width:100%;
  487. float:left;
  488. border:3px solid darkgray;
  489. border-radius:4px;
  490. color:#000000;
  491. }
  492. .magicjar3 {
  493. float:left;
  494. width:120px;
  495. height:120px;
  496. background-size:120px 120px;
  497. cursor:pointer;
  498. }
  499. #magicjar3 {
  500. float:left;
  501. margin:6%;
  502. margin-top:0px;
  503. margin-bottom:5px;
  504. width:90%;
  505. font-size:15px;
  506. font-family:Arial,Sans,Verdana;
  507. color:#000000;
  508. background:#f7ecb5;
  509. }
  510. .magicjar3-content {
  511. width:100%;
  512. float:left;
  513. border:3px solid darkgray;
  514. border-radius:4px;
  515. color:#000000;
  516. }
  517. .magicjar-num {
  518. float:right;
  519. margin-left:99.9%;
  520. margin-right:2px;
  521. background:yellow;
  522. color:darkorange;
  523. }
  524. .no-drop {
  525. cursor: not-allowed;
  526. }
  527. .no-dropzone {
  528. cursor: not-allowed;
  529. }
  530. #pagetitle {
  531. float:left;
  532. width:100%;
  533. height:70px;
  534. padding:5px;
  535. text-align:center;
  536. margin-bottom:20px;
  537. background-color:#3366ff;
  538. color:#FFFFFF;
  539. opacity:0.8;
  540. font-family:'Indie Flower';
  541. font-size:30px;
  542. font-style:italic;
  543. font-weight:900;
  544. position:relative;
  545. top:-60px;
  546. /*color:#5e383a;*/
  547. }
  548. #Password {
  549. font-size:18px;
  550. background:transparent;
  551. width: 60%;
  552. border-radius:3px;
  553. font-weight:900;
  554. }
  555. #passworddisplay {
  556. float:left;
  557. position:fixed;
  558. top:680px;
  559. left:50px;
  560. width:255px;
  561. height:120px;
  562. background:darkgray;
  563. text-align:left;
  564. white-space:nowrap;
  565. font-family:Arial,Sans,Verdana;
  566. color:#000000;
  567. font-weight:900;
  568. z-index:99999;
  569. }
  570. #picavatar {
  571. position:absolute;
  572. width:255px;
  573. height:255px;
  574. border-radius: 90%;
  575. display:none;
  576. }
  577. .prodel {
  578. text-align:left;
  579. padding:36px;
  580. padding-top:7px;
  581. padding-right:16px;
  582. color:#444;
  583. font-weight:900;
  584. }
  585. .prodlist {
  586. padding-top:6px;
  587. }
  588. .prodname {
  589. width:45%;
  590. float:left;
  591. padding-top:8px;
  592. border-bottom:1px dotted darkgray;
  593. }
  594. .prodprice {
  595. width:20%;
  596. float:left;
  597. padding-top:8px;
  598. }
  599. .prodaction {
  600. width:17%;
  601. float:left;
  602. cursor:pointer;
  603. text-align:center;
  604. margin:auto;
  605. }
  606. .prodactionimg {
  607. position:relative;
  608. left:+10px;
  609. margin-bottom:7px;
  610. width:42px;
  611. }
  612. #carties {
  613. display: none;
  614. }
  615. #results {
  616. display: none;
  617. }
  618. #Salt {
  619. position:relative;
  620. top:+5px;
  621. font-size:18px;
  622. background:transparent;
  623. width: 90%;
  624. border-radius:3px;
  625. font-weight:900;
  626. }
  627. .settingson {
  628. float:left;
  629. width:120px;
  630. height:150px;
  631. border:0px solid black;
  632. background:url(/res/settingsoff.png);
  633. background-size:cover;
  634. cursor:pointer;
  635. display:none;
  636. }
  637. .settingsoff {
  638. float:left;
  639. width:120px;
  640. height:150px;
  641. border:0px solid black;
  642. background:url(/res/settingson.png);
  643. background-size:cover;
  644. cursor:pointer;
  645. }
  646. #title {
  647. position:relative;
  648. top:20px;
  649. left:50px;
  650. width:100%;
  651. float:left;
  652. font-size:25px;
  653. font-family:'Press Start 2P';
  654. border:0px solid blue;
  655. }
  656. .titlelane {
  657. text-align:left;
  658. margin-bottom:8px;
  659. font-weight:900;
  660. text-align:left;
  661. }
  662. .titlelanecyan {
  663. color:darkcyan;
  664. }
  665. .titlelanered {
  666. color:darkred;
  667. }
  668. .titlelaneblack {
  669. color:black;
  670. }
  671. .titlelanered {
  672. color: red;
  673. }
  674. .titlelaneyellow {
  675. color: yellow;
  676. }
  677. .titlelanegray {
  678. color: #444;
  679. }
  680. .titlelanegreen {
  681. color: greenyellow;
  682. }
  683. .titlelanewhite {
  684. color: #FFFFFF;
  685. }
  686. .titlelaneorange {
  687. color: orange;
  688. }
  689. .titlelanedarkgreen {
  690. color: darkgreen;
  691. }
  692. .tools {
  693. position:fixed;
  694. top:12px;
  695. width:120px;
  696. height:620px;
  697. display:none;
  698. }