Advertisement
Guest User

style.css

a guest
Apr 25th, 2012
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.57 KB | None | 0 0
  1. /*
  2. Theme Name: Twenty Eleven Child
  3. Description: Child theme for the Twenty Eleven theme
  4. Author: Your name here
  5. Template: twentyeleven
  6. */
  7.  
  8. @import url("../twentyeleven/style.css");
  9.  
  10. #access {
  11. background: #534640; }
  12.  
  13. #site-title {
  14. color: #009900;
  15. }
  16.  
  17.  
  18. {
  19. color: inherit;
  20. font: 15px "Helvetica Neue", Helvetica, Arial, sans-serif;
  21. font-style: inherit;
  22. font-weight: inherit;
  23. line-height: 0;
  24. }
  25. body {
  26. color: #333;
  27. font: 15px "Helvetica Neue", Helvetica, Arial, "Nimbus Sans L", sans-serif;
  28. font-weight: 300;
  29. line-height: 2;
  30. }
  31.  
  32. /* Headings */
  33. h1,h2,h3,h4,h5,h6 {
  34. clear: both;
  35. }
  36. h1,
  37. h2 {
  38. color: #000;
  39. font-size: 15px;
  40. font-weight: bold;
  41. margin: 0 0 0em;
  42. }
  43. h3 {
  44. font-size: 10px;
  45. letter-spacing: 0.1em;
  46. line-height: 2.6em;
  47. text-transform: uppercase;
  48. }
  49. h4, h5, h6 {
  50. font-size: 14px;
  51. margin: 0;
  52. }
  53. hr {
  54. background-color: #ccc;
  55. border: 0;
  56. height: 1px;
  57. margin-bottom: 1.625em;
  58. }
  59.  
  60. /* Text elements */
  61. p, ul, ol, dl {
  62. font-weight: 300;
  63. }
  64. p {
  65. margin-bottom: 1.625em;
  66. }
  67. ul, ol {
  68. margin: 0 0 1.625em 2.5em;
  69. padding: 0;
  70. }
  71. ul {
  72. list-style: square;
  73. }
  74. ol {
  75. list-style-type: decimal;
  76. }
  77. ol ol {
  78. list-style: upper-alpha;
  79. }
  80. ol ol ol {
  81. list-style: lower-roman;
  82. }
  83. ol ol ol ol {
  84. list-style: lower-alpha;
  85. }
  86. ul ul, ol ol, ul ol, ol ul {
  87. margin-bottom: 0;
  88. }
  89. dl {
  90. margin: 0 1.625em;
  91. }
  92. dt {
  93. font-size: 15px;
  94. font-weight: bold;
  95. }
  96. dd {
  97. margin: 0 0 1.625em;
  98. }
  99. strong {
  100. font-weight: bold;
  101. }
  102. cite, em, i {
  103. font-style: italic;
  104. }
  105. cite {
  106. border: none;
  107. }
  108. big {
  109. font-size: 131.25%;
  110. }
  111. .mceContentBody blockquote,
  112. .mceContentBody blockquote p {
  113. font-family: Georgia, "Bitstream Charter", serif !important;
  114. font-style: italic !important;
  115. font-weight: normal;
  116. margin: 0 3em;
  117. }
  118. .mceContentBody blockquote em,
  119. .mceContentBody blockquote i,
  120. .mceContentBody blockquote cite {
  121. font-style: normal;
  122. }
  123. .mceContentBody blockquote cite {
  124. color: #666;
  125. font: 12px "Helvetica Neue", Helvetica, Arial, sans-serif;
  126. font-weight: 300;
  127. letter-spacing: 0.05em;
  128. text-transform: uppercase;
  129. }
  130. pre {
  131. background: #f4f4f4;
  132. font: 13px "Courier 10 Pitch", Courier, monospace;
  133. line-height: 1.5;
  134. margin-bottom: 1.625em;
  135. padding: 0.75em 1.625em;
  136. }
  137. code, kbd, code var {
  138. font: 13px Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
  139. }
  140. abbr, acronym, dfn {
  141. border-bottom: 1px dotted #666;
  142. cursor: help;
  143. }
  144. address {
  145. display: block;
  146. margin: 0 0 1.625em;
  147. }
  148. del {
  149. color: #333;
  150. }
  151. ins {
  152. background: #fff9c0;
  153. border: none;
  154. color: #333;
  155. text-decoration: none;
  156. }
  157. sup,
  158. sub {
  159. font-size: 10px;
  160. height: 0;
  161. line-height: 1;
  162. position: relative;
  163. vertical-align: baseline;
  164. }
  165. sup {
  166. bottom: 1ex;
  167. }
  168. sub {
  169. top: .5ex;
  170. }
  171. input[type=text],
  172. textarea {
  173. background: #fafafa;
  174. -moz-box-shadow: inset 0 1px 1px rgba(0,0,0,0.1);
  175. -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.1);
  176. box-shadow: inset 0 1px 1px rgba(0,0,0,0.1);
  177. border: 1px solid #ddd;
  178. color: #888;
  179. }
  180. input[type=text]:focus,
  181. textarea:focus {
  182. color: #333;
  183. }
  184. textarea {
  185. padding-left: 3px;
  186. width: 98%;
  187. }
  188. input[type=text] {
  189. padding: 3px;
  190. }
  191.  
  192. /* Links */
  193. a,
  194. a em,
  195. a strong {
  196. color: #1b8be0;
  197. text-decoration: none;
  198. }
  199. a:focus,
  200. a:active,
  201. a:hover {
  202. text-decoration: underline;
  203. }
  204.  
  205. /* Alignment */
  206. .alignleft {
  207. display: inline;
  208. float: left;
  209. margin-right: 1.625em;
  210. }
  211. .alignright {
  212. display: inline;
  213. float: right;
  214. margin-left: 1.625em;
  215. }
  216. .aligncenter {
  217. clear: both;
  218. display: block;
  219. margin-left: auto;
  220. margin-right: auto;
  221. }
  222.  
  223. /* Tables */
  224. table {
  225. border: none !important;
  226. border-bottom: 1px solid #ddd !important;
  227. border-collapse: collapse;
  228. border-spacing: 0;
  229. text-align: left;
  230. margin: 0 0 1.625em;
  231. width: 100%;
  232. }
  233. tr th {
  234. border: none !important;
  235. color: #666;
  236. font-size: 10px;
  237. font-weight: 500;
  238. letter-spacing: 0.1em;
  239. line-height: 2.6em;
  240. text-transform: uppercase;
  241. }
  242. td {
  243. border: none !important;
  244. border-top: 1px solid #ddd !important;
  245. padding: 6px 10px 6px 0;
  246. }
  247.  
  248. /* Images */
  249. img[class*="wp-image-"] {
  250. height: auto;
  251. max-width: 97.5%;
  252. }
  253. img.size-full {
  254. width: auto; /* Prevent stretching of full-size images in IE8 */
  255. }
  256. img.wp-smiley {
  257. border: none;
  258. margin-bottom: 0;
  259. margin-top: 0;
  260. padding: 0;
  261. }
  262. p img,
  263. .wp-caption {
  264. margin-top: 0.4em;
  265. }
  266. img {
  267. border: 1px solid #ddd;
  268. padding: 6px;
  269. }
  270. img.alignleft,
  271. img.alignright,
  272. img.aligncenter {
  273. margin-bottom: 1.625em;
  274. }
  275. .wp-caption {
  276. background: #eee;
  277. border: none;
  278. margin-bottom: 1.625em;
  279. max-width: 96%;
  280. padding: 9px;
  281. }
  282. .wp-caption img {
  283. display: block;
  284. margin: 5px auto 0 !important;
  285. max-width: 98%;
  286. border-color: #eee;
  287. }
  288. .wp-caption .wp-caption-text,
  289. .wp-caption-dd {
  290. color: #666;
  291. font-family: Georgia, serif !important;
  292. font-size: 12px;
  293. margin: 0 0 0.6em 0 !important;
  294. padding: 0 0 5px 40px;
  295. position: relative;
  296. text-align: left;
  297. }
  298. .wp-caption .wp-caption-text:before {
  299. color: #666;
  300. content: '\2014';
  301. font-size: 14px;
  302. font-style: normal;
  303. font-weight: bold;
  304. margin-right: 5px;
  305. position: absolute;
  306. left: 10px;
  307. top: 7px;
  308. }
  309. a:focus img[class*="wp-image-"],
  310. a:hover img[class*="wp-image-"],
  311. a:active img[class*="wp-image-"] {
  312. background: #eee;
  313. border-color: #bbb;
  314. }
  315. .wp-caption a:focus img,
  316. .wp-caption a:active img,
  317. .wp-caption a:hover img {
  318. background: #fff;
  319. border-color: #ddd;
  320. }
  321.  
  322.  
  323.  
  324.  
  325. #site-title {
  326. padding: 0em 0 0;
  327. text-align: center;
  328. margin:0px;
  329. }
  330. h1#site-title span img
  331. {
  332. width:400px;
  333. height:200px;
  334. }
  335. #branding img {
  336. height: auto;
  337. margin-bottom: -7px;
  338. padding: 0;
  339. width: 100%;
  340. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement