screen.css 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361
  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. }
  121. .usericon, .buddyicon {
  122. width: 2rem;
  123. height: 2rem;
  124. display: inline-block;
  125. }
  126. .usericon, .buddyicon, .postericon {
  127. background-size: cover;
  128. background-repeat: no-repeat;
  129. padding-right: unset !important;
  130. }
  131. .postericon {
  132. float: right;
  133. }
  134. .circle, .usericon, .buddyicon, .postericon {
  135. border-radius: 50%;
  136. }
  137. .portrait {
  138. position: absolute;
  139. background-color: white;
  140. border: solid black 5px;
  141. height: 10rem;
  142. width: 10rem;
  143. background-size: cover;
  144. top: 13.5rem;
  145. }
  146. .banner {
  147. position: relative;
  148. padding: .5rem;
  149. box-sizing: border-box;
  150. resize: horizontal;
  151. overflow: clip;
  152. max-width: 45rem;
  153. min-height: 25rem;
  154. width: 100%;
  155. background-repeat: no-repeat;
  156. background-position: top center;
  157. margin-left: auto;
  158. margin-right: auto;
  159. }
  160. .banner > #postData {
  161. position: absolute;
  162. top: 19rem;
  163. left: 12rem;
  164. }
  165. .avatar {
  166. width: 3em;
  167. height: 3em;
  168. float: left;
  169. background-size: 3em;
  170. }
  171. span#clickme {
  172. display: none;
  173. font-size: 2rem;
  174. line-height: 2rem;
  175. }
  176. span#clickme:hover {
  177. cursor: pointer;
  178. }
  179. .coolbutton, .cooltext, textarea {
  180. box-sizing: border-box;
  181. border-radius: .5em;
  182. border: .25em solid black;
  183. color: white;
  184. padding: .25em;
  185. margin: .25em;
  186. }
  187. .coolbutton {
  188. box-shadow: 0 0 .5em black;
  189. background-color: #333;
  190. }
  191. .coolbutton:active {
  192. padding-left: .30em;
  193. border-color: gray;
  194. }
  195. .cooltext {
  196. background-color: #333;
  197. width: 100%;
  198. }
  199. .Submissions input, .Submissions textarea, .Submissions select {
  200. width: 95%;
  201. display: block;
  202. margin-right: auto;
  203. margin-left: auto;
  204. }
  205. .Config input, .Config textarea, .Config select {
  206. display:inline;
  207. }
  208. .Submissions textarea {
  209. height: 20em;
  210. vertical-align: top;
  211. }
  212. /*Various other stylistic stuff below*/
  213. a.nudes {
  214. color: rgb(0,255,0);
  215. }
  216. img.icon {
  217. height: 1em;
  218. width: 1em;
  219. }
  220. img.mblogimg, {
  221. max-width: 100%;
  222. display: block;
  223. }
  224. h3.blogtitles {
  225. margin-bottom: .5em;
  226. margin-top: 0px;
  227. }
  228. em.blogdetail {
  229. font-size: .8em;
  230. }
  231. a.topbar {
  232. text-decoration: none;
  233. color: white;
  234. vertical-align:middle;
  235. }
  236. a:hover.topbar {
  237. text-decoration: underline;
  238. }
  239. img.titlebar {
  240. height: 1.5em;
  241. float: left;
  242. }
  243. .title {
  244. padding-top: 0px;
  245. margin-top: 0px;
  246. font-weight: bold;
  247. }
  248. p#linkcontainer {
  249. padding: 2em .5em .5em .5em;
  250. background: rgb(0,0,0); /*IE Fallback*/
  251. background: rgba(0,0,0,.75);
  252. border-bottom-left-radius: 1em;
  253. margin-top: 0px;
  254. }
  255. span.bold {
  256. font-weight: bold;
  257. }
  258. p.posteditortitle {
  259. margin: 0px;
  260. font-weight: bold;
  261. border-bottom: .1em solid gray;
  262. padding: .5em;
  263. }
  264. .disabled {
  265. display: none;
  266. }
  267. .clear {
  268. clear: both;
  269. }
  270. .mbedit_text {
  271. display: inline-block;
  272. }
  273. .mbedit_button {
  274. width: 5em;
  275. display: inline-block;
  276. }
  277. #newposttitle {
  278. width: 95%;
  279. display: block;
  280. box-sizing: border-box;
  281. }
  282. #newpostlink {
  283. color: #990000;
  284. }
  285. /*Responsive design stuff that used to be in JS, modify as needed*/
  286. @media (max-width: 1024px) {
  287. div#midtitle {
  288. display: none;
  289. }
  290. div#lefttitle {
  291. min-width: calc(100vw - 5.5rem);
  292. }
  293. span#clickme {
  294. display: inline-block;
  295. flex-shrink: 0;
  296. }
  297. #righttitle, #configbar {
  298. visibility: hidden;
  299. position: fixed;
  300. top: 2rem;
  301. right: 0;
  302. min-width: 0;
  303. max-width: 100%;
  304. background-color: rgba(0,0,0,.75);
  305. border-bottom-left-radius: 1em;
  306. padding-left: .5rem;
  307. }
  308. #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 {
  309. visibility: visible;
  310. }
  311. #righttitle > a, #configbar a {
  312. display: block;
  313. border-right: 0;
  314. }
  315. }
  316. @media (max-width: 700px) {
  317. #mbengine {
  318. width: 100%;
  319. display: block;
  320. }
  321. #submissions {
  322. width: 100%;
  323. display: block;
  324. }
  325. .responsive-hide {
  326. display:none;
  327. }
  328. }
  329. .manageUserEntry {
  330. border: .25rem dashed black;
  331. padding: .5rem;
  332. }
  333. .undecorated {
  334. text-decoration: none;
  335. }
  336. .tile {
  337. display: inline-block;
  338. }
  339. .preview {
  340. background-repeat: no-repeat;
  341. background-position: center;
  342. background-size: contain;
  343. }
  344. .profile {
  345. background-size: 75%;
  346. background-position-y: center;
  347. }
  348. .bigprofile {
  349. background-size: 100%;
  350. background-position-y: center;
  351. }