mobile.css 10.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761
  1. /* overall */
  2. * {
  3. font-family: arial, helvetica, sans-serif;
  4. font-size: 12pt;
  5. }
  6. a {
  7. text-decoration:none;
  8. }
  9. h1 {
  10. font-size:20px;
  11. }
  12. p {
  13. margin: 0px !important;
  14. }
  15. body {
  16. margin: 0;
  17. }
  18. ul{
  19. padding:0px;
  20. margin:0px;
  21. list-style: none;
  22. }
  23. select{
  24. padding:5px;
  25. margin-top:5px;
  26. border:0px;
  27. font-weight:bold;
  28. font-family:fontello, sans-serif;
  29. }
  30. .postform select,.reply select{
  31. width: 45px;
  32. }
  33. option{
  34. font-family:fontello, sans-serif;
  35. }
  36. label {
  37. margin-left: 5px;
  38. margin-right: 5px;
  39. cursor: pointer;
  40. }
  41. input[type="file"], .nloadmore {
  42. cursor:pointer;
  43. }
  44. textarea {
  45. resize: none;
  46. font-size:12px !important;
  47. }
  48. /* omnipresent */
  49. .desktop{
  50. display:none !important;
  51. }
  52. .link {
  53. text-decoration: none;
  54. }
  55. .external:after{
  56. font-family:fontello;
  57. font-weight:normal;
  58. content: ' ';
  59. }
  60. /* basic structure */
  61. .topbar {
  62. width: 100vw;
  63. height: 45px;
  64. margin-top: 45px;
  65. position:fixed; bottom:0px; left:0px;
  66. z-index:99;
  67. }
  68. .topbar > div.topbar{
  69. position:fixed; bottom:0px; left:0px;
  70. }
  71. .wrapper {
  72. width: 100vw;
  73. clear: both;
  74. display: inline-block;
  75. text-align: center;
  76. }
  77. .container {
  78. width: 100% !important;
  79. display: inline-block;
  80. text-align: center;
  81. }
  82. #posts {
  83. width: 100% !important;
  84. }
  85. .content {
  86. width: 100%;
  87. display: inline-block;
  88. margin:0px !important;
  89. text-align: left;
  90. word-break: break-all;
  91. font-size:12px !important;
  92. }
  93. .content * {
  94. font-size:12px !important;
  95. }
  96. .content .emoji {
  97. height:19px !important;
  98. }
  99. .flex {
  100. margin-top: 5px;
  101. max-height:100px;
  102. overflow:hidden;
  103. }
  104. .flex_host{
  105. font-weight:lighter;
  106. font-style:italic;
  107. display:block;
  108. margin-bottom:5px;
  109. font-size:10px;
  110. opacity:0.5;
  111. }
  112. .flex > div{
  113. text-overflow: ellipsis;
  114. font-size:10px;
  115. }
  116. aside {
  117. display:none !important;
  118. }
  119. .gotop {
  120. width: 30px;
  121. height: 30px;
  122. padding: 5px;
  123. position: fixed;
  124. display: table;
  125. text-align: center;
  126. right: 20px;
  127. bottom: 60px;
  128. border-radius: 10px;
  129. z-index:50;
  130. background-color: #001935 !important;
  131. }
  132. .gotop a {
  133. text-align: center;
  134. display: table-cell;
  135. vertical-align: middle;
  136. opacity: 0.7;
  137. font-size: 20px;
  138. }
  139. #hiddenside {
  140. background-color: rgba(255, 255, 255, 0);
  141. position: fixed;
  142. left: 0px;
  143. top: 0px;
  144. width: 100vw;
  145. height: auto;
  146. z-index: 99;
  147. }
  148. #videodock{
  149. background-color: rgba(255, 255, 255, 0);
  150. position: fixed;
  151. display:none;
  152. left: 0px;
  153. top: 0px;
  154. width: 100px;
  155. height: 80px;
  156. z-index: 99;
  157. }
  158. /* topbar elements */
  159. .mid {
  160. display:none;
  161. }
  162. .topbutton {
  163. vertical-align: middle;
  164. display: table-cell;
  165. line-height: 45px;
  166. height: 100%;
  167. width: 40px;
  168. position: relative;
  169. }
  170. .fw .topbutton {
  171. width: 80px;
  172. }
  173. .topicon {
  174. text-decoration: none;
  175. display: inline;
  176. font-size: 20px;
  177. }
  178. .badge {
  179. text-decoration: none;
  180. }
  181. .alert {
  182. border-radius: 90px;
  183. width: 10px;
  184. height: 10px;
  185. position: absolute;
  186. right: 15px;
  187. top: 15px;
  188. display: none;
  189. }
  190. #notifications {
  191. position: fixed;
  192. left: 0px;
  193. bottom: 45px;
  194. width: 100vw;
  195. max-height: 400px;
  196. display: none;
  197. line-height:12px;
  198. overflow-y:scroll;
  199. border-radius:3px;
  200. }
  201. .notif{
  202. width:100%;
  203. height:80px;
  204. display:inline-block;
  205. text-align:left;
  206. position:relative;
  207. }
  208. #quicksend {
  209. border-radius: 3px;
  210. font-weight: bold;
  211. }
  212. .notifContents{
  213. margin:10px;
  214. display:flex;
  215. height:60px;
  216. max-width:325px;
  217. }
  218. .nloadmore {
  219. display:inline-block;
  220. height:20px;
  221. padding-top:10px;
  222. }
  223. /* sidebar */
  224. .side_element {
  225. display:none;
  226. width: 92%;
  227. margin: 10px;
  228. display: inline-block;
  229. text-align: center;
  230. color: lightgray;
  231. }
  232. .side_element a {
  233. color: lightgray;
  234. }
  235. /* posts area elements */
  236. .uploadedImage {
  237. width: 60px;
  238. margin: 10px 0px 10px 10px;
  239. height: 60px;
  240. border: 1px solid #ccc;
  241. display: inline-block;
  242. box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.3);
  243. float: left;
  244. background-size: cover;
  245. }
  246. .uploadBox {
  247. width: 100%;
  248. display: inline-block;
  249. border-bottom: 1px solid #ddd;
  250. }
  251. .delpic {
  252. border-radius:90px;
  253. display:inline-block;
  254. cursor:pointer;
  255. }
  256. #send {
  257. padding:5px;
  258. border-radius:3px;
  259. font-weight:bold;
  260. margin-top:5px;
  261. }
  262. .formbtn {
  263. background-color:transparent;
  264. border: 0px;
  265. margin-top:11px;
  266. margin-left:15px;
  267. float:left;
  268. width:20px;
  269. height:20px;
  270. line-height:20px;
  271. text-align:center;
  272. overflow:hidden;
  273. font-size:20px;
  274. }
  275. .formbtn label{
  276. margin:-5px;
  277. font-size:20px;
  278. }
  279. .element {
  280. width: 90% !important;
  281. clear: both;
  282. display: inline-block;
  283. margin-top: 3px;
  284. }
  285. .profile {
  286. float:left;
  287. border-radius:5px;
  288. width:100%;
  289. }
  290. .profileButton{
  291. padding: 5px;
  292. border-radius: 5px;
  293. font-family: fontello, sans-serif;
  294. }
  295. .mobilemenu {
  296. display: none;
  297. width: 250px;
  298. position: fixed;
  299. top:0px;
  300. right:0px;
  301. bottom:0px;
  302. height: 100%;
  303. z-index:99;
  304. }
  305. .switcher {
  306. display: none;
  307. }
  308. .mobilemenu li {
  309. height: 25px !important;
  310. padding-left:10px;
  311. }
  312. .postMenu,.listmenu {
  313. cursor: pointer;
  314. position:relative;
  315. }
  316. .postMenu div{
  317. border-radius: 3px;
  318. }
  319. .postMenu li {
  320. margin:0px;
  321. width:100%;
  322. height:35px;
  323. display:block;
  324. text-align:center;
  325. line-height:35px;
  326. }
  327. .postMenu:hover > div{
  328. display:block !important;
  329. }
  330. .postMenu ul {
  331. margin:0px;
  332. width:100%;
  333. padding:0px;
  334. }
  335. .profileMenu:hover > div, .listmenu:hover > div{
  336. display:block !important;
  337. }
  338. .listmenu li {
  339. font-family: fontello, sans-serif;
  340. height:30px;
  341. line-height:30px;
  342. text-align:left;
  343. padding-left:12px;
  344. list-style-type: none;
  345. }
  346. .felem {
  347. margin-left: 16px;
  348. float: left;
  349. }
  350. .felem a {
  351. font-size:20px !important;
  352. }
  353. .felem a > span {
  354. font-size:small;
  355. }
  356. .contact{
  357. background-color:white;
  358. cursor: pointer;
  359. border-top:1px dotted #aaa;
  360. }
  361. .contact:hover{
  362. background-color:#0000a0;
  363. color:white;
  364. }
  365. .avatar {
  366. width: 80px;
  367. background-size: 80px;
  368. height: 80px;
  369. float: left;
  370. margin: 15px;
  371. border-radius: 10px;
  372. }
  373. .post,
  374. .loader,
  375. .loadmore,
  376. .rb,
  377. .textonly,
  378. .profile {
  379. width: 100% !important;
  380. float: left;
  381. text-align: center;
  382. position: relative;
  383. border-radius: 0px;
  384. }
  385. .postform,.searchmobile {
  386. position:fixed;
  387. width: 100vw !important;
  388. left:0px;
  389. bottom:45px;
  390. text-align: center;
  391. border-radius: 3px;
  392. z-index: 99;
  393. }
  394. #postform,#searchmobile {
  395. display:none;
  396. }
  397. .postHeader {
  398. width: 100%;
  399. display: inline-block;
  400. height: 40px;
  401. text-align: left;
  402. }
  403. .postHeader *,.post_footer *{
  404. font-size:12px;
  405. }
  406. .previewpost {
  407. display: none;
  408. position: absolute;
  409. margin-top: -100px;
  410. width: 400px;
  411. border-radius:3px;
  412. }
  413. .user {
  414. position:relative;
  415. }
  416. .userinfo {
  417. display: none;
  418. position: absolute;
  419. left:0px;
  420. top:15px;
  421. width: 300px;
  422. height: auto;
  423. border-radius:3px;
  424. line-height:initial;
  425. z-index:99;
  426. }
  427. .userinfo_upper{
  428. top:-100px;
  429. }
  430. .userinfo_co {
  431. width: 280px;
  432. margin: 10px;
  433. text-align: center;
  434. position:relative;
  435. }
  436. .userinfo_he {
  437. width: 300px;
  438. height: 150px;
  439. }
  440. .media {
  441. width: 100%;
  442. display: inline-block;
  443. }
  444. .img {
  445. width: 600px;
  446. text-align: center;
  447. }
  448. .blur {
  449. -webkit-filter: blur(25px) brightness(70%) grayscale(80%);
  450. /* Safari 6.0 - 9.0 */
  451. filter: blur(25px) brightness(70%) grayscale(80%);
  452. opacity: 0.5;
  453. transition: 0.4s;
  454. }
  455. .toggleblur {
  456. display:none;
  457. cursor: pointer;
  458. font-family: sans, fontello;
  459. }
  460. .small {
  461. width: 48% !important;
  462. height: 221px;
  463. line-height: 221px;
  464. background-color: black;
  465. float:left;
  466. margin:2px !important;
  467. }
  468. .smaller {
  469. width: 31% !important;
  470. height: 112px;
  471. line-height: 112px;
  472. background-color: black;
  473. float:left;
  474. margin:2px !important;
  475. }
  476. .icon {
  477. width: 80px !important;
  478. height: 80px !important;
  479. line-height: 80px;
  480. float:left;
  481. text-align:center;
  482. margin:2px !important;
  483. }
  484. .postbody {
  485. margin: 15px;
  486. }
  487. .postAge,.public:after,.unlisted:after,.private:after,.direct:after {
  488. font-size:11px;
  489. }
  490. .post_footer {
  491. width: 630px;
  492. display: table-cell;
  493. clear: both;
  494. padding: 10px;
  495. height: 20px;
  496. text-align: left;
  497. border-radius: 3px;
  498. }
  499. .post_buttons {
  500. font-family: fontello, sans-serif;
  501. float: right;
  502. display: inline-block;
  503. text-align: right;
  504. font-size: 15pt;
  505. }
  506. .post_buttons a,
  507. .post_buttons span {
  508. font-family: inherit;
  509. text-decoration: none;
  510. color: inherit;
  511. font-family: fontello, sans-serif;
  512. }
  513. .reply {
  514. width: 100%;
  515. clear: both;
  516. text-align: left;
  517. display: block;
  518. border-bottom:1px dotted #aaa;
  519. }
  520. .reply .postMenu {
  521. margin-right:15px !important;
  522. margin-top:1px !important;
  523. }
  524. .replyflex {
  525. flex: 6 !important;
  526. }
  527. .note {
  528. width: 640px;
  529. float: left;
  530. text-align: left;
  531. border-radius: 5px;
  532. padding: 5px;
  533. }
  534. .button {
  535. padding: 15px;
  536. float: left;
  537. text-align: center;
  538. border-radius: 5px;
  539. font-size: 20pt;
  540. }
  541. /* pages */
  542. .setting label {
  543. display: block;
  544. width: 40px;
  545. height: 20px;
  546. padding: 5px;
  547. float: left;
  548. margin: 0px;
  549. text-align: center;
  550. transition: all 0.3s ease-in-out;
  551. }
  552. .setting input[type="radio"]:checked+label {
  553. font-weight: bold;
  554. }
  555. /* other stuff */
  556. /* <lightbox> */
  557. .lightbox-opened {
  558. /* background-color: #333; */
  559. background-color: rgba(50, 50, 50, 0.85);
  560. cursor: pointer;
  561. height: 100%;
  562. /* left: 0; */
  563. overflow-y: scroll;
  564. position: fixed;
  565. text-align: center;
  566. top: 0;
  567. width: 100%;
  568. z-index:105;
  569. &:before {
  570. background-color: #333;
  571. background-color: rgba(#333, 0.9);
  572. color: #eee;
  573. content: "x";
  574. font-family: sans-serif;
  575. padding: 6px 12px;
  576. position: fixed;
  577. text-transform: uppercase;
  578. }
  579. img {
  580. box-shadow: 0 0 6px 3px #333;
  581. }
  582. }
  583. /*
  584. .lightbox-opened {
  585. //background-color: #333;
  586. background-color: rgba(50, 50, 50, 0.85);
  587. cursor: pointer;
  588. height: 100%;
  589. left: 0;
  590. overflow-y: scroll;
  591. padding: 24px;
  592. position: fixed;
  593. text-align: center;
  594. top: 0;
  595. width: 100%;
  596. &:before {
  597. background-color: #333;
  598. background-color: rgba(#333, 0.9);
  599. color: #eee;
  600. content: "x";
  601. font-family: sans-serif;
  602. padding: 6px 12px;
  603. position: fixed;
  604. text-transform: uppercase;
  605. }
  606. img {
  607. box-shadow: 0 0 6px 3px #333;
  608. }
  609. }
  610. */
  611. .no-scroll {
  612. overflow: hidden;
  613. }
  614. /* </lightbox> */
  615. .fontello {
  616. font-family: fontello, sans-serif;
  617. }
  618. .loading {
  619. font-family: fontello;
  620. color: black;
  621. content: "\E822";
  622. animation-name: spin;
  623. animation-duration: 5000ms;
  624. animation-iteration-count: infinite;
  625. animation-timing-function: linear;
  626. /* transform: rotate(3deg); */
  627. /* transform: rotate(0.3rad);/ */
  628. /* transform: rotate(3grad); */
  629. /* transform: rotate(.03turn); */
  630. }
  631. @keyframes spin {
  632. from {
  633. transform: rotate(0deg);
  634. }
  635. to {
  636. transform: rotate(360deg);
  637. }
  638. }
  639. .disabled {
  640. background-color: black;
  641. }
  642. .hidden {
  643. display:none;
  644. }