style.css 13 KB

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