screen.css 4.5 KB

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