screen.css 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507
  1. /*SCREEN.CSS - All styling for the screen view of the site should be done here*/
  2. /*Global tag based changes go here*/
  3. a {
  4. color: rgb(0,0,0);
  5. border: 0px;
  6. }
  7. body {
  8. color: black;
  9. background-color: gray;
  10. font-family: sans-serif;
  11. font-size: 100%;
  12. }
  13. img {
  14. border: 0px;
  15. }
  16. table {
  17. border-spacing: 0px;
  18. }
  19. td {
  20. padding: 0px;
  21. margin: 0px;
  22. }
  23. hr {
  24. width: 100%
  25. }
  26. ul {
  27. list-style-type: disc;
  28. }
  29. pre {
  30. margin-top: .25em;
  31. margin-bottom: .25em;
  32. white-space: pre-wrap;
  33. font-family: sans-serif;
  34. font-size: 1em;
  35. }
  36. textarea {
  37. height: 10em;
  38. width: 99%;
  39. background-color: #333;
  40. height: 15em;
  41. }
  42. audio, video {
  43. display: block;
  44. }
  45. /*Major DOM Element Styling goes below*/
  46. #topkek {
  47. background: rgb(0,0,0);
  48. box-shadow: 0 .25em .5em black;
  49. padding-top: .1rem;
  50. }
  51. .toplel {
  52. color: white;
  53. vertical-align: middle;
  54. }
  55. #lefttitle {
  56. font-family: courier;
  57. font-size: 1em;
  58. font-weight: bold;
  59. padding-left: .5rem;
  60. line-height: 2rem;
  61. }
  62. #midtitle, .midtitle {
  63. text-align: center;
  64. }
  65. #righttitle {
  66. text-align: right;
  67. }
  68. #righttitle a, #configbar a {
  69. padding-right: .5em;
  70. border-right: .1em #333 solid;
  71. }
  72. #righttitle a:last-child, #configbar a:last-child {
  73. border-right: 0;
  74. }
  75. #menubutton {
  76. vertical-align: middle;
  77. }
  78. #littlemenu {
  79. background-color: rgb(0,0,0);
  80. background-color: rgba(0,0,0,.75);
  81. border-bottom-left-radius: 1em;
  82. }
  83. #kontent {
  84. background: rgb(255,255,255); /*IE Fallback*/
  85. background: rgba(255,255,255,.90);
  86. border-radius: 0px 0px 1em 1em;
  87. box-shadow: 0 .5em 1em black;
  88. }
  89. #footbar {
  90. color: white;
  91. background-color: black;
  92. text-align: center;
  93. }
  94. /* admin styles */
  95. #mbengine {
  96. width: 100%;
  97. display: table;
  98. }
  99. #submissions {
  100. display: table-cell;
  101. }
  102. #stories {
  103. vertical-align: top;
  104. }
  105. /*Icon/Button styles below*/
  106. .rss {
  107. border: 0px;
  108. height: 1em;
  109. width: 1em;
  110. background-size: 1em;
  111. background-image: url(/img/icon/rss.png);
  112. display: inline-block;
  113. filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/img/icon/rss.png', sizingMethod='scale');
  114. -ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/img/icon/rss.png', sizingMethod='scale')";
  115. }
  116. .postericon {
  117. width: 2.5rem;
  118. height: 2.5rem;
  119. float: right;
  120. text-decoration:none;
  121. }
  122. .usericon, .buddyicon {
  123. width: 2rem;
  124. height: 2rem;
  125. display: inline-block;
  126. }
  127. .usericon, .buddyicon, .postericon {
  128. background-size: cover;
  129. background-repeat: no-repeat;
  130. padding-right: unset !important;
  131. }
  132. .circle, .usericon, .buddyicon, .postericon {
  133. border-radius: 50%;
  134. }
  135. .portrait {
  136. position: absolute;
  137. background-color: white;
  138. border: solid black 5px;
  139. height: 10rem;
  140. width: 10rem;
  141. background-size: cover;
  142. top: 13.5rem;
  143. }
  144. .banner {
  145. position: relative;
  146. padding: .5rem;
  147. box-sizing: border-box;
  148. resize: horizontal;
  149. overflow: clip;
  150. max-width: 45rem;
  151. min-height: 25rem;
  152. width: 100%;
  153. background-repeat: no-repeat;
  154. background-position: top center;
  155. margin-left: auto;
  156. margin-right: auto;
  157. }
  158. .banner > #postData {
  159. position: absolute;
  160. top: 19rem;
  161. left: 12rem;
  162. }
  163. .avatar {
  164. width: 3em;
  165. height: 3em;
  166. float: left;
  167. background-size: 3em;
  168. }
  169. span#clickme {
  170. display: none;
  171. font-size: 2rem;
  172. line-height: 2rem;
  173. }
  174. span#clickme:hover {
  175. cursor: pointer;
  176. }
  177. .coolbutton, .cooltext, textarea {
  178. box-sizing: border-box;
  179. border-radius: .5em;
  180. border: .25em solid black;
  181. color: white;
  182. padding: .25em;
  183. margin: .25em;
  184. }
  185. .coolbutton {
  186. box-shadow: 0 0 .5em black;
  187. background-color: #333;
  188. cursor:pointer;
  189. }
  190. .coolbutton:active {
  191. padding-left: .30em;
  192. border-color: gray;
  193. }
  194. .cooltext {
  195. background-color: #333;
  196. width: 100%;
  197. }
  198. .cooltab {
  199. box-shadow: 0 0 .5em black;
  200. background-color: #333;
  201. cursor:pointer;
  202. border-color: gray;
  203. box-sizing: border-box;
  204. border-radius: .5em;
  205. border: .25em solid black;
  206. color: white;
  207. }
  208. .coolcb {
  209. height: 1.5rem !important;
  210. width: 1.5rem !important;
  211. display:inline !important;
  212. margin-left: 1rem !important;
  213. margin-bottom: 1rem !important;
  214. }
  215. .Submissions input, .Submissions textarea, .Submissions select {
  216. width: 95%;
  217. display: block;
  218. margin-right: auto;
  219. margin-left: auto;
  220. }
  221. .Config input, .Config textarea, .Config select {
  222. display:inline;
  223. }
  224. .Submissions textarea {
  225. height: 20em;
  226. vertical-align: top;
  227. }
  228. /*Various other stylistic stuff below*/
  229. a.nudes {
  230. color: rgb(0,255,0);
  231. }
  232. img.icon {
  233. height: 1em;
  234. width: 1em;
  235. }
  236. img.mblogimg, {
  237. max-width: 100%;
  238. display: block;
  239. }
  240. h3.blogtitles {
  241. margin-bottom: 0px;
  242. margin-top: 0px;
  243. }
  244. em.blogdetail {
  245. font-size: .8em;
  246. }
  247. a.topbar {
  248. text-decoration: none;
  249. color: white;
  250. }
  251. .topform {
  252. margin:0px;
  253. }
  254. a.topbarimg {
  255. vertical-align:middle;
  256. }
  257. a:hover.topbar {
  258. text-decoration: underline;
  259. }
  260. img.titlebar {
  261. height: 1.5em;
  262. float: left;
  263. }
  264. .title {
  265. padding-top: 0px;
  266. margin-top: 0px;
  267. font-weight: bold;
  268. }
  269. p#linkcontainer {
  270. padding: 2em .5em .5em .5em;
  271. background: rgb(0,0,0); /*IE Fallback*/
  272. background: rgba(0,0,0,.75);
  273. border-bottom-left-radius: 1em;
  274. margin-top: 0px;
  275. }
  276. span.bold {
  277. font-weight: bold;
  278. }
  279. p.posteditortitle {
  280. margin: 0px;
  281. font-weight: bold;
  282. border-bottom: .1em solid gray;
  283. padding: .5em;
  284. }
  285. .disabled {
  286. display: none;
  287. }
  288. .clear {
  289. clear: both;
  290. }
  291. .mbedit_text {
  292. display: inline-block;
  293. }
  294. .mbedit_button {
  295. width: 5em;
  296. display: inline-block;
  297. }
  298. #newposttitle {
  299. width: 95%;
  300. display: block;
  301. box-sizing: border-box;
  302. }
  303. #newpostlink {
  304. color: #990000;
  305. }
  306. .hidon {
  307. display:none;
  308. }
  309. /*Responsive design stuff that used to be in JS, modify as needed*/
  310. @media (max-width: 1024px) {
  311. div#midtitle {
  312. display: none;
  313. }
  314. div#lefttitle {
  315. min-width: calc(100vw - 5.5rem);
  316. }
  317. span#clickme {
  318. display: inline-block;
  319. flex-shrink: 0;
  320. }
  321. #righttitle, #configbar {
  322. visibility: hidden;
  323. position: fixed;
  324. top: 2rem;
  325. right: 0;
  326. min-width: 0;
  327. max-width: 100%;
  328. background-color: rgba(0,0,0,.75);
  329. border-bottom-left-radius: 1em;
  330. padding-left: .5rem;
  331. }
  332. #clickme:hover ~ #righttitle, #clickme:active ~ #righttitle, #clickme:focus ~ #righttitle, #righttitle:hover, #righttitle a:active, #clickme:active ~ #configbar, #clickme:focus ~ #configbar, #configbar:hover, #configbar a:active {
  333. visibility: visible;
  334. }
  335. #righttitle > a, #configbar a {
  336. display: block;
  337. border-right: 0;
  338. }
  339. }
  340. @media (max-width: 700px) {
  341. #mbengine {
  342. width: 100%;
  343. display: block;
  344. }
  345. #submissions {
  346. width: 100%;
  347. display: block;
  348. }
  349. .responsive-hide {
  350. display:none;
  351. }
  352. }
  353. .manageUserEntry {
  354. border: .25rem dashed black;
  355. padding: .5rem;
  356. }
  357. .undecorated {
  358. text-decoration: none;
  359. }
  360. .tile {
  361. display: inline-block;
  362. }
  363. .preview {
  364. background-repeat: no-repeat;
  365. background-position: center;
  366. background-size: contain;
  367. margin-top: .5rem;
  368. }
  369. .profile {
  370. background-size: 75%;
  371. background-position-y: center;
  372. }
  373. .bigprofile {
  374. background-size: 100%;
  375. background-position-y: center;
  376. }
  377. /*Responsive Shizz*/
  378. @media(max-width: 900px) {
  379. body {
  380. font-size: 100%;
  381. }
  382. #kontent {
  383. padding: 3em 0.5em 0.5em;
  384. max-width:95vw;
  385. }
  386. #leftbar, #rightbar {
  387. display: none;
  388. }
  389. img.nudes, .mblogimg {
  390. max-width: 95vw;
  391. }
  392. .trogged {
  393. display: none;
  394. }
  395. }
  396. /*Responsive iframes*/
  397. @media(max-width: 35rem) {
  398. iframe.responsive, video.responsive {
  399. width: 100%;
  400. height: 10rem;
  401. }
  402. .responsive-text {
  403. width:100%;
  404. }
  405. }
  406. /* For tcms Advert */
  407. .trogged {
  408. right: 0;
  409. bottom: 0;
  410. position: fixed;
  411. z-index: 100;
  412. text-decoration: none;
  413. }
  414. /* embed style for posts */
  415. .embed {
  416. border: inset;
  417. margin: 2rem;
  418. padding: 1rem;
  419. }
  420. /* Name badge on posts */
  421. .nameBadge {
  422. background-color: black;
  423. opacity: 80%;
  424. color: white;
  425. border-radius: 1rem;
  426. text-align:center;
  427. padding-left: 1rem;
  428. padding-right: 1rem;
  429. padding-bottom: .5rem;
  430. }
  431. pre {
  432. background: #e4e4e4;
  433. border-width: 1px;
  434. border-style: solid;
  435. border-color: #400 #700 #700 #400;
  436. }
  437. a.tag {
  438. padding: 0rem .5rem 0rem .5rem;
  439. border-radius: 1rem;
  440. background: #e4e4e4;
  441. border-width: 1px;
  442. border-style: solid;
  443. border-color: grey;
  444. text-decoration: none;
  445. text-shadow 0 0 2px grey;
  446. font-size: 1rem;
  447. }
  448. .postData {
  449. margin-top: .5rem;
  450. }
  451. #emojis {
  452. width: 30vw;
  453. height: 30vh;
  454. overflow: scroll;
  455. }
  456. #emoji-container {
  457. border-radius: 1rem;
  458. background: #e4e4e4;
  459. border-width: 1px;
  460. border-style: solid;
  461. border-color: grey;
  462. text-decoration: none;
  463. text-shadow 0 0 2px grey;
  464. font-size: 1rem;
  465. width: 30vw;
  466. text-align: center;
  467. padding: .25rem;
  468. line-height: 125%;
  469. }
  470. .emoji {
  471. cursor: pointer;
  472. font-size: 100%;
  473. padding-left:.25rem;
  474. }
  475. .emoji:hover {
  476. font-size: 120%;
  477. text-shadow: 0 0 .3rem gold;
  478. }
  479. .posteditor {
  480. width: 100%;
  481. }
  482. #emoji_picker_modal {
  483. position: fixed;
  484. top: 3rem;
  485. right: 3rem;
  486. }