screen.css 8.3 KB

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