screen.css 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458
  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. .coolcb {
  200. height: 1.5rem !important;
  201. width: 1.5rem !important;
  202. display:inline !important;
  203. margin-left: 1rem !important;
  204. margin-bottom: 1rem !important;
  205. }
  206. .Submissions input, .Submissions textarea, .Submissions select {
  207. width: 95%;
  208. display: block;
  209. margin-right: auto;
  210. margin-left: auto;
  211. }
  212. .Config input, .Config textarea, .Config select {
  213. display:inline;
  214. }
  215. .Submissions textarea {
  216. height: 20em;
  217. vertical-align: top;
  218. }
  219. /*Various other stylistic stuff below*/
  220. a.nudes {
  221. color: rgb(0,255,0);
  222. }
  223. img.icon {
  224. height: 1em;
  225. width: 1em;
  226. }
  227. img.mblogimg, {
  228. max-width: 100%;
  229. display: block;
  230. }
  231. h3.blogtitles {
  232. margin-bottom: 0px;
  233. margin-top: 0px;
  234. }
  235. em.blogdetail {
  236. font-size: .8em;
  237. }
  238. a.topbar {
  239. text-decoration: none;
  240. color: white;
  241. }
  242. .topform {
  243. margin:0px;
  244. }
  245. a.topbarimg {
  246. vertical-align:middle;
  247. }
  248. a:hover.topbar {
  249. text-decoration: underline;
  250. }
  251. img.titlebar {
  252. height: 1.5em;
  253. float: left;
  254. }
  255. .title {
  256. padding-top: 0px;
  257. margin-top: 0px;
  258. font-weight: bold;
  259. }
  260. p#linkcontainer {
  261. padding: 2em .5em .5em .5em;
  262. background: rgb(0,0,0); /*IE Fallback*/
  263. background: rgba(0,0,0,.75);
  264. border-bottom-left-radius: 1em;
  265. margin-top: 0px;
  266. }
  267. span.bold {
  268. font-weight: bold;
  269. }
  270. p.posteditortitle {
  271. margin: 0px;
  272. font-weight: bold;
  273. border-bottom: .1em solid gray;
  274. padding: .5em;
  275. }
  276. .disabled {
  277. display: none;
  278. }
  279. .clear {
  280. clear: both;
  281. }
  282. .mbedit_text {
  283. display: inline-block;
  284. }
  285. .mbedit_button {
  286. width: 5em;
  287. display: inline-block;
  288. }
  289. #newposttitle {
  290. width: 95%;
  291. display: block;
  292. box-sizing: border-box;
  293. }
  294. #newpostlink {
  295. color: #990000;
  296. }
  297. /*Responsive design stuff that used to be in JS, modify as needed*/
  298. @media (max-width: 1024px) {
  299. div#midtitle {
  300. display: none;
  301. }
  302. div#lefttitle {
  303. min-width: calc(100vw - 5.5rem);
  304. }
  305. span#clickme {
  306. display: inline-block;
  307. flex-shrink: 0;
  308. }
  309. #righttitle, #configbar {
  310. visibility: hidden;
  311. position: fixed;
  312. top: 2rem;
  313. right: 0;
  314. min-width: 0;
  315. max-width: 100%;
  316. background-color: rgba(0,0,0,.75);
  317. border-bottom-left-radius: 1em;
  318. padding-left: .5rem;
  319. }
  320. #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 {
  321. visibility: visible;
  322. }
  323. #righttitle > a, #configbar a {
  324. display: block;
  325. border-right: 0;
  326. }
  327. }
  328. @media (max-width: 700px) {
  329. #mbengine {
  330. width: 100%;
  331. display: block;
  332. }
  333. #submissions {
  334. width: 100%;
  335. display: block;
  336. }
  337. .responsive-hide {
  338. display:none;
  339. }
  340. }
  341. .manageUserEntry {
  342. border: .25rem dashed black;
  343. padding: .5rem;
  344. }
  345. .undecorated {
  346. text-decoration: none;
  347. }
  348. .tile {
  349. display: inline-block;
  350. }
  351. .preview {
  352. background-repeat: no-repeat;
  353. background-position: center;
  354. background-size: contain;
  355. margin-top: .5rem;
  356. }
  357. .profile {
  358. background-size: 75%;
  359. background-position-y: center;
  360. }
  361. .bigprofile {
  362. background-size: 100%;
  363. background-position-y: center;
  364. }
  365. /*Responsive Shizz*/
  366. @media(max-width: 900px) {
  367. body {
  368. font-size: 100%;
  369. }
  370. #kontent {
  371. padding: 3em 0.5em 0.5em;
  372. max-width:95vw;
  373. }
  374. #leftbar, #rightbar {
  375. display: none;
  376. }
  377. img.nudes, .mblogimg {
  378. max-width: 95vw;
  379. }
  380. .trogged {
  381. display: none;
  382. }
  383. }
  384. /*Responsive iframes*/
  385. @media(max-width: 35rem) {
  386. iframe.responsive, video.responsive {
  387. width: 100%;
  388. height: 10rem;
  389. }
  390. .responsive-text {
  391. width:100%;
  392. }
  393. }
  394. /* For tcms Advert */
  395. .trogged {
  396. right: 0;
  397. bottom: 0;
  398. position: fixed;
  399. z-index: 100;
  400. text-decoration: none;
  401. }
  402. /* embed style for posts */
  403. .embed {
  404. border: inset;
  405. margin: 2rem;
  406. padding: 1rem;
  407. }
  408. /* Name badge on posts */
  409. .nameBadge {
  410. background-color: black;
  411. opacity: 80%;
  412. color: white;
  413. border-radius: 1rem;
  414. text-align:center;
  415. padding-left: 1rem;
  416. padding-right: 1rem;
  417. padding-bottom: .5rem;
  418. }
  419. pre {
  420. background: #e4e4e4;
  421. border-width: 1px;
  422. border-style: solid;
  423. border-color: #400 #700 #700 #400;
  424. }
  425. a.tag {
  426. padding: 0rem .5rem 0rem .5rem;
  427. border-radius: 1rem;
  428. background: #e4e4e4;
  429. border-width: 1px;
  430. border-style: solid;
  431. border-color: grey;
  432. text-decoration: none;
  433. text-shadow 0 0 2px grey;
  434. font-size: 1rem;
  435. }
  436. .postData {
  437. margin-top: .5rem;
  438. }