screen.css 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290
  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. }
  50. .toplel {
  51. color: white;
  52. vertical-align: middle;
  53. }
  54. #lefttitle {
  55. font-family: courier;
  56. font-size: 1em;
  57. font-weight: bold;
  58. }
  59. #midtitle {
  60. text-align: center;
  61. }
  62. #righttitle {
  63. text-align: right;
  64. }
  65. #righttitle a, #configbar a {
  66. padding-right: .5em;
  67. border-right: .1em #333 solid;
  68. }
  69. #righttitle a:last-child, #configbar a:last-child {
  70. border-right: 0;
  71. }
  72. #menubutton {
  73. vertical-align: middle;
  74. }
  75. #littlemenu {
  76. background-color: rgb(0,0,0);
  77. background-color: rgba(0,0,0,.75);
  78. border-bottom-left-radius: 1em;
  79. }
  80. #leftbar {
  81. }
  82. #kontent {
  83. background: rgb(255,255,255); /*IE Fallback*/
  84. background: rgba(255,255,255,.90);
  85. border-radius: 0px 0px 1em 1em;
  86. box-shadow: 0 .5em 1em black;
  87. }
  88. #rightbar {
  89. }
  90. #footbar {
  91. color: white;
  92. background-color: black;
  93. text-align: center;
  94. }
  95. /* admin styles */
  96. #mbengine {
  97. width: 100%;
  98. display: table;
  99. }
  100. #submissions {
  101. width: 20%;
  102. display: table-cell;
  103. }
  104. #stories {
  105. vertical-align: top;
  106. }
  107. /*Icon/Button styles below*/
  108. .rss {
  109. border: 0px;
  110. height: 1em;
  111. width: 1em;
  112. background-size: 1em;
  113. background-image: url(../img/icon/rss.png);
  114. display: inline-block;
  115. filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../img/icon/rss.png', sizingMethod='scale');
  116. -ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../img/icon/rss.png', sizingMethod='scale')";
  117. }
  118. .usericon, .buddyicon {
  119. width: 1em;
  120. height: 1em;
  121. float: right;
  122. background-size: 1em;
  123. }
  124. .avatar {
  125. width: 3em;
  126. height: 3em;
  127. float: left;
  128. background-size: 3em;
  129. }
  130. button#clickme {
  131. display: none;
  132. float: right;
  133. box-shadow: 0px 0px 0.5em #66CCFF;
  134. padding: 0 .25em;
  135. margin: .25em;
  136. font-size: .60em;
  137. background-color: #333;
  138. border-radius: .5em;
  139. border: .25em solid black;
  140. color: red;
  141. }
  142. button#clickme:active {
  143. padding-left: .30em;
  144. border-color: gray;
  145. }
  146. .coolbutton, .cooltext, textarea {
  147. box-sizing: border-box;
  148. border-radius: .5em;
  149. border: .25em solid black;
  150. color: white;
  151. padding: .25em;
  152. margin: .25em;
  153. }
  154. .coolbutton {
  155. box-shadow: 0 0 .5em black;
  156. background-color: #333;
  157. }
  158. .coolbutton:active {
  159. padding-left: .30em;
  160. border-color: gray;
  161. }
  162. .cooltext {
  163. background-color: #333;
  164. width: 100%;
  165. }
  166. #Submissions input, #Submissions textarea {
  167. width: 95%;
  168. display: block;
  169. margin-right: auto;
  170. margin-left: auto;
  171. }
  172. #Submissions textarea {
  173. height: 20em;
  174. vertical-align: top;
  175. }
  176. /*Various other stylistic stuff below*/
  177. a.nudes {
  178. color: rgb(0,255,0);
  179. }
  180. img.icon {
  181. height: 1em;
  182. width: 1em;
  183. }
  184. img.mblogimg, {
  185. max-width: 100%;
  186. display: block;
  187. }
  188. h3.blogtitles {
  189. margin-bottom: .5em;
  190. margin-top: 0px;
  191. }
  192. em.blogdetail {
  193. font-size: .8em;
  194. }
  195. a.topbar {
  196. text-decoration: none;
  197. color: white;
  198. }
  199. a:hover.topbar {
  200. text-decoration: underline;
  201. }
  202. img.titlebar {
  203. height: 1.5em;
  204. float: left;
  205. }
  206. p.title {
  207. padding-top: 0px;
  208. margin-top: 0px;
  209. font-weight: bold;
  210. }
  211. p#linkcontainer {
  212. padding: 2em .5em .5em .5em;
  213. background: rgb(0,0,0); /*IE Fallback*/
  214. background: rgba(0,0,0,.75);
  215. border-bottom-left-radius: 1em;
  216. margin-top: 0px;
  217. }
  218. span.bold {
  219. font-weight: bold;
  220. }
  221. p.posteditortitle {
  222. margin: 0px;
  223. font-weight: bold;
  224. border-bottom: .1em solid gray;
  225. padding: .5em;
  226. }
  227. .disabled {
  228. display: none;
  229. }
  230. .clear {
  231. clear: both;
  232. }
  233. .mbedit_text {
  234. display: inline-block;
  235. }
  236. .mbedit_button {
  237. width: 5em;
  238. display: inline-block;
  239. }
  240. #newposttitle {
  241. width: 95%;
  242. display: block;
  243. box-sizing: border-box;
  244. }
  245. #newpostlink {
  246. color: #990000;
  247. }
  248. /*Responsive design stuff that used to be in JS, modify as needed*/
  249. @media (max-width: 1024px) {
  250. #lefttitle {
  251. width: 100%;
  252. max-width: 100%;
  253. }
  254. #clickme {
  255. display: table-cell !important;
  256. }
  257. #righttitle, #configbar {
  258. visibility: hidden;
  259. position: fixed;
  260. top: 2rem;
  261. right: 0;
  262. min-width: 0;
  263. max-width: 100%;
  264. background-color: rgba(0,0,0,.75);
  265. border-bottom-left-radius: 1em;
  266. }
  267. #clickme:active ~ #righttitle, #clickme:focus ~ #righttitle, #righttitle:hover, #righttitle a:active, #clickme:active ~ #configbar, #clickme:focus ~ #configbar, #configbar:hover, #configbar a:active {
  268. visibility: visible;
  269. }
  270. #righttitle a, #configbar a {
  271. display: block;
  272. border-right: 0;
  273. }
  274. }
  275. @media (max-width: 700px) {
  276. #mbengine {
  277. width: 100%;
  278. display: block;
  279. }
  280. #submissions {
  281. width: 100%;
  282. display: block;
  283. }
  284. }