screen.css 7.1 KB

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