screen.css 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355
  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. }
  235. a:hover.topbar {
  236. text-decoration: underline;
  237. }
  238. img.titlebar {
  239. height: 1.5em;
  240. float: left;
  241. }
  242. .title {
  243. padding-top: 0px;
  244. margin-top: 0px;
  245. font-weight: bold;
  246. }
  247. p#linkcontainer {
  248. padding: 2em .5em .5em .5em;
  249. background: rgb(0,0,0); /*IE Fallback*/
  250. background: rgba(0,0,0,.75);
  251. border-bottom-left-radius: 1em;
  252. margin-top: 0px;
  253. }
  254. span.bold {
  255. font-weight: bold;
  256. }
  257. p.posteditortitle {
  258. margin: 0px;
  259. font-weight: bold;
  260. border-bottom: .1em solid gray;
  261. padding: .5em;
  262. }
  263. .disabled {
  264. display: none;
  265. }
  266. .clear {
  267. clear: both;
  268. }
  269. .mbedit_text {
  270. display: inline-block;
  271. }
  272. .mbedit_button {
  273. width: 5em;
  274. display: inline-block;
  275. }
  276. #newposttitle {
  277. width: 95%;
  278. display: block;
  279. box-sizing: border-box;
  280. }
  281. #newpostlink {
  282. color: #990000;
  283. }
  284. /*Responsive design stuff that used to be in JS, modify as needed*/
  285. @media (max-width: 1024px) {
  286. div#midtitle {
  287. display: none;
  288. }
  289. div#lefttitle {
  290. min-width: calc(100vw - 5.5rem);
  291. }
  292. span#clickme {
  293. display: inline-block;
  294. flex-shrink: 0;
  295. }
  296. #righttitle, #configbar {
  297. visibility: hidden;
  298. position: fixed;
  299. top: 2rem;
  300. right: 0;
  301. min-width: 0;
  302. max-width: 100%;
  303. background-color: rgba(0,0,0,.75);
  304. border-bottom-left-radius: 1em;
  305. padding-left: .5rem;
  306. }
  307. #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 {
  308. visibility: visible;
  309. }
  310. #righttitle > a, #configbar a {
  311. display: block;
  312. border-right: 0;
  313. }
  314. }
  315. @media (max-width: 700px) {
  316. #mbengine {
  317. width: 100%;
  318. display: block;
  319. }
  320. #submissions {
  321. width: 100%;
  322. display: block;
  323. }
  324. .responsive-hide {
  325. display:none;
  326. }
  327. }
  328. .manageUserEntry {
  329. border: .25rem dashed black;
  330. padding: .5rem;
  331. }
  332. .undecorated {
  333. text-decoration: none;
  334. }
  335. .tile {
  336. display: inline-block;
  337. }
  338. .preview {
  339. background-repeat: no-repeat;
  340. background-position: center;
  341. background-size: contain;
  342. }
  343. .profile {
  344. background-size: 75%;
  345. background-position-y: center;
  346. }