RintoMuhamad

Style Css

Apr 14th, 2016
366
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.29 KB | None | 0 0
  1. body {
  2. margin : 0;
  3. min-width : 1100px;
  4. }
  5. header {
  6. height : 60px;
  7. background : #eee;
  8. border-bottom : #ccc;
  9. }
  10. header .logo {
  11. display : inline-block;
  12. line-height : 60px;
  13. margin-left : 30px;
  14. font-size : 20px;
  15. }
  16. header .name-input {
  17. display : inline-block;
  18. margin-left : 30px;
  19. }
  20. header .name-input #input {
  21. height : 30px;
  22. border-radius : 5px;
  23. border : #000 solid 1px;
  24. padding : 5px;
  25. }
  26. header .name-input #submit {
  27. display : inline-block;
  28. background : #eee;
  29. border-radius : 5px;
  30. margin-left : 10px;
  31. height : 30px;
  32. border : #000 solid 1px;
  33. line-height : 30px;
  34. padding : 0 10px;
  35. }
  36. header .name-input #submit:hover {
  37. cursor : pointer;
  38. background : #ccc;
  39. }
  40. #input_error {
  41. display : inline-block;
  42. color : #f00;
  43. line-height : 60px;
  44. margin-left : 20px;
  45. font-weight : bold;
  46. }
  47. .hidden {
  48. display : none;
  49. }
  50. .container {
  51. margin : 0 20px 20px;
  52. }
  53. #name {
  54. margin : 5px 0;
  55. font-size : 22px;
  56. }
  57. .profilepic {
  58. display : inline-block;
  59. width : 30%;
  60. padding : 20px;
  61. background : #eee;
  62. min-height : 200px;
  63. text-align : center;
  64. }
  65. .profilepic img {
  66. max-width : 100%;
  67. max-height : 300px;
  68. }
  69. .about {
  70. display : inline-block;
  71. vertical-align : top;
  72. min-width : 20%;
  73. margin-left : 30px;
  74. padding : 20px;
  75. background : #eee;
  76. min-height : 200px;
  77. }
  78. .lookups {
  79. display : inline-block;
  80. vertical-align : top;
  81. min-width : 25%;
  82. margin-left : 30px;
  83. padding : 20px;
  84. background : #eee;
  85. min-height : 200px;
  86. }
  87. #lookups {
  88. float : left;
  89. }
  90. #own_lookups {
  91. float : right;
  92. margin-left : 10px;
  93. }
  94. #lookups td, #own_lookups td {
  95. font-size : 13px;
  96. }
  97. .mini {
  98. padding : 20px;
  99. background : #eee;
  100. min-height : 100px;
  101. margin-top : 20px;
  102. }
  103. .full {
  104. padding : 20px;
  105. background : #eee;
  106. min-height : 100px;
  107. margin-top : 20px;
  108. }
  109. .loader {
  110. margin : 10px auto 0;
  111. width : 50px;
  112. height : auto;
  113. text-align : center;
  114. }
  115. form {
  116. display : inline-block;
  117. margin : 0;
  118. }
  119. h2 {
  120. display : inline-block;
  121. margin : 5px 10px;
  122. }
  123. .code {
  124. font-family : monospace;
  125. padding : 10px !important ;
  126. white-space : pre-wrap;
  127. background-color : #333;
  128. color : #fff;
  129. font-size : 12px;
  130. }
  131. pre .str, code .str {
  132. color : #65B042;
  133. }
  134. pre .kwd, code .kwd {
  135. color : #E28964;
  136. }
  137. pre .com, code .com {
  138. color : #AEAEAE;
  139. font-style : italic;
  140. }
  141. pre .typ, code .typ {
  142. color : #89bdff;
  143. }
  144. pre .lit, code .lit {
  145. color : #3387CC;
  146. }
  147. pre .pun, code .pun {
  148. color : #fff;
  149. }
  150. pre .pln, code .pln {
  151. color : #fff;
  152. }
  153. pre .tag, code .tag {
  154. color : #89bdff;
  155. }
  156. pre .atn, code .atn {
  157. color : #bdb76b;
  158. }
  159. pre .atv, code .atv {
  160. color : #65B042;
  161. }
  162. pre .dec, code .dec {
  163. color : #3387CC;
  164. }
  165. pre.prettyprint, code.prettyprint {
  166. background-color : #000;
  167. border-radius : 8px;
  168. }
  169. ol.linenums {
  170. margin-top : 0;
  171. margin-bottom : 0;
  172. color : #AEAEAE;
  173. }
  174. li.L0, li.L1, li.L2, li.L3, li.L5, li.L6, li.L7, li.L8 {
  175. list-style-type : none;
  176. }
  177. @media print {
  178. pre .str, code .str {
  179. color : #060;
  180. }
  181. pre .kwd, code .kwd {
  182. color : #006;
  183. font-weight : bold;
  184. }
  185. pre .com, code .com {
  186. color : #600;
  187. font-style : italic;
  188. }
  189. pre .typ, code .typ {
  190. color : #404;
  191. font-weight : bold;
  192. }
  193. pre .lit, code .lit {
  194. color : #044;
  195. }
  196. pre .pun, code .pun {
  197. color : #440;
  198. }
  199. pre .pln, code .pln {
  200. color : #000;
  201. }
  202. pre .tag, code .tag {
  203. color : #006;
  204. font-weight : bold;
  205. }
  206. pre .atn, code .atn {
  207. color : #404;
  208. }
  209. pre .atv, code .atv {
  210. color : #060;
  211. }
  212. }
Advertisement
Add Comment
Please, Sign In to add comment