screen.css 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343
  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. margin-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. }
  60. #midtitle, .midtitle {
  61. text-align: center;
  62. }
  63. #righttitle {
  64. text-align: right;
  65. }
  66. #righttitle a, #configbar a {
  67. padding-right: .5em;
  68. border-right: .1em #333 solid;
  69. }
  70. #righttitle a:last-child, #configbar a:last-child {
  71. border-right: 0;
  72. }
  73. #menubutton {
  74. vertical-align: middle;
  75. }
  76. #littlemenu {
  77. background-color: rgb(0,0,0);
  78. background-color: rgba(0,0,0,.75);
  79. border-bottom-left-radius: 1em;
  80. }
  81. #kontent {
  82. background: rgb(255,255,255); /*IE Fallback*/
  83. background: rgba(255,255,255,.90);
  84. border-radius: 0px 0px 1em 1em;
  85. box-shadow: 0 .5em 1em black;
  86. }
  87. #footbar {
  88. color: white;
  89. background-color: black;
  90. text-align: center;
  91. }
  92. /* admin styles */
  93. #mbengine {
  94. width: 100%;
  95. display: table;
  96. }
  97. #submissions {
  98. width: 20%;
  99. display: table-cell;
  100. }
  101. #stories {
  102. vertical-align: top;
  103. }
  104. /*Icon/Button styles below*/
  105. .rss {
  106. border: 0px;
  107. height: 1em;
  108. width: 1em;
  109. background-size: 1em;
  110. background-image: url(/img/icon/rss.png);
  111. display: inline-block;
  112. filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/img/icon/rss.png', sizingMethod='scale');
  113. -ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/img/icon/rss.png', sizingMethod='scale')";
  114. }
  115. .usericon, .buddyicon {
  116. width: 1em;
  117. height: 1em;
  118. float: right;
  119. background-size: 1em;
  120. background-repeat: no-repeat;
  121. margin-left:1rem;
  122. border-radius: 50%;
  123. padding-right: unset !important;
  124. }
  125. .circle, .usericon, .buddyicon {
  126. border-radius: 50%;
  127. }
  128. .portrait {
  129. position: absolute;
  130. background-color: white;
  131. border: solid black 5px;
  132. height: 10rem;
  133. width: 10rem;
  134. background-size: cover;
  135. top: 13.5rem;
  136. }
  137. .banner {
  138. position: relative;
  139. padding: .5rem;
  140. box-sizing: border-box;
  141. resize: horizontal;
  142. overflow: clip;
  143. max-width: 45rem;
  144. min-height: 25rem;
  145. width: 100%;
  146. background-repeat: no-repeat;
  147. background-position: top center;
  148. margin-left: auto;
  149. margin-right: auto;
  150. }
  151. .banner > #postData {
  152. position: absolute;
  153. bottom: 5rem;
  154. left: 12rem;
  155. }
  156. .avatar {
  157. width: 3em;
  158. height: 3em;
  159. float: left;
  160. background-size: 3em;
  161. }
  162. button#clickme {
  163. display: none;
  164. float: right;
  165. box-shadow: 0px 0px 0.5em #66CCFF;
  166. padding: 0 .25em;
  167. margin: .25em;
  168. font-size: .60em;
  169. background-color: #333;
  170. border-radius: .5em;
  171. border: .25em solid black;
  172. color: red;
  173. }
  174. button#clickme:active {
  175. padding-left: .30em;
  176. border-color: gray;
  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. a:hover.topbar {
  235. text-decoration: underline;
  236. }
  237. img.titlebar {
  238. height: 1.5em;
  239. float: left;
  240. }
  241. .title {
  242. padding-top: 0px;
  243. margin-top: 0px;
  244. font-weight: bold;
  245. }
  246. p#linkcontainer {
  247. padding: 2em .5em .5em .5em;
  248. background: rgb(0,0,0); /*IE Fallback*/
  249. background: rgba(0,0,0,.75);
  250. border-bottom-left-radius: 1em;
  251. margin-top: 0px;
  252. }
  253. span.bold {
  254. font-weight: bold;
  255. }
  256. p.posteditortitle {
  257. margin: 0px;
  258. font-weight: bold;
  259. border-bottom: .1em solid gray;
  260. padding: .5em;
  261. }
  262. .disabled {
  263. display: none;
  264. }
  265. .clear {
  266. clear: both;
  267. }
  268. .mbedit_text {
  269. display: inline-block;
  270. }
  271. .mbedit_button {
  272. width: 5em;
  273. display: inline-block;
  274. }
  275. #newposttitle {
  276. width: 95%;
  277. display: block;
  278. box-sizing: border-box;
  279. }
  280. #newpostlink {
  281. color: #990000;
  282. }
  283. /*Responsive design stuff that used to be in JS, modify as needed*/
  284. @media (max-width: 1024px) {
  285. #lefttitle {
  286. width: 100%;
  287. max-width: 100%;
  288. }
  289. #clickme {
  290. display: table-cell !important;
  291. }
  292. #righttitle, #configbar {
  293. visibility: hidden;
  294. position: fixed;
  295. top: 2rem;
  296. right: 0;
  297. min-width: 0;
  298. max-width: 100%;
  299. background-color: rgba(0,0,0,.75);
  300. border-bottom-left-radius: 1em;
  301. }
  302. #clickme:active ~ #righttitle, #clickme:focus ~ #righttitle, #righttitle:hover, #righttitle a:active, #clickme:active ~ #configbar, #clickme:focus ~ #configbar, #configbar:hover, #configbar a:active {
  303. visibility: visible;
  304. }
  305. #righttitle a, #configbar a {
  306. display: block;
  307. border-right: 0;
  308. }
  309. }
  310. @media (max-width: 700px) {
  311. #mbengine {
  312. width: 100%;
  313. display: block;
  314. }
  315. #submissions {
  316. width: 100%;
  317. display: block;
  318. }
  319. }
  320. .manageUserEntry {
  321. border: .25rem dashed black;
  322. padding: .5rem;
  323. }
  324. .undecorated {
  325. text-decoration: none;
  326. }
  327. .tile {
  328. display: inline-block;
  329. }
  330. .preview {
  331. background-repeat: no-repeat;
  332. background-position: center;
  333. background-size: contain;
  334. }