Advertisement
Guest User

Untitled

a guest
Sep 12th, 2011
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 15.89 KB | None | 0 0
  1. /*
  2. Theme Name: Glassical
  3. Theme URI: http://www.smashingthemes.com/free-wordpress-themes/glassical/
  4. Description: Glassical Theme is designed by SmashingThemes.com and was released via SmashingMagazine.com. Please note the SmashingThemes.com and SmashingMagazine are not affiliated. Both are two different entities.
  5. Version: 1.0
  6. Author: Abdullah Ibrahim
  7. Author URI: http://www.smashingthemes.com
  8. Tags: light, yellow, silver, blue, two-columns, fixed-width
  9. */
  10.  
  11. html, body
  12. {
  13. background-color:#69D2E7;
  14. background-image:url(images/bg.jpg);
  15. background-repeat:repeat-y;
  16. background-position:center center;
  17. background-attachment:fixed;
  18. width:100%;
  19. height:100%;
  20. margin:0;
  21. padding:0;
  22. font-family:Arial, Tahoma, Verdana;
  23. font-size:12px;
  24. line-height: 1.5em;
  25. color:#666;
  26. text-align:center;
  27. }
  28.  
  29. form {margin:0;padding:0;}
  30.  
  31. a
  32. {
  33. /*color:#6CBDDE;*/
  34. color:#D14640;
  35. text-decoration:none;
  36. }
  37.  
  38. a:hover
  39. {
  40. /*text-decoration:underline;*/
  41. }
  42.  
  43. a img
  44. {
  45. border:none;
  46. }
  47.  
  48. form
  49. {
  50. padding:0;
  51. margin:0;
  52. }
  53.  
  54. input, select, textarea
  55. {
  56. font-family:Arial, Tahoma, Verdana;
  57. }
  58.  
  59. h1, h2, h3
  60. {
  61. padding:0;
  62. font-weight:bold;
  63. text-transform:uppercase;
  64. }
  65.  
  66. h1
  67. {
  68. font-size:28px;
  69. color:#FA6900;
  70. margin:0 0 20px 0;
  71. }
  72.  
  73. h1 a { color:#FA6900; }
  74.  
  75. h2
  76. {
  77. font-size:23px;
  78. color:#D14640;
  79. margin:0 0 20px 0;
  80. }
  81.  
  82. h3
  83. {
  84. font-size:15px;
  85. color:#69D2E7;
  86. margin:0;
  87. }
  88.  
  89. h2 a { color:#D14640; }
  90. h3 a { color:#69D2E7; }
  91.  
  92.  
  93.  
  94. /* ////////////////////// Layout ////////////////////// */
  95. #pagewidth
  96. {
  97. width:980px;
  98. text-align:left;
  99. margin:0 auto;
  100. padding:30px 0;
  101. position:relative;
  102. }
  103.  
  104. #header
  105. {
  106. float:left;
  107. width:100%;
  108. margin:0;
  109. padding:0;
  110. position:relative;
  111. background:url(images/header.png) bottom left no-repeat;
  112. }
  113.  
  114. #content
  115. {
  116. clear:both;
  117. float:left;
  118. width:960px;
  119. padding:30px 10px 0 10px;
  120. position:relative;
  121. background:url(images/content.jpg) top left repeat-y;
  122. }
  123.  
  124. #content #left
  125. {
  126. display:inline;
  127. width:540px;
  128. float:left;
  129. margin:0 30px 0 30px;
  130. }
  131.  
  132. #content #right
  133. {
  134. position:relative;
  135. display:inline;
  136. width:300px;
  137. float:right;
  138. margin:0 30px 0 30px;
  139. }
  140.  
  141. #footer
  142. {
  143. position:relative;
  144. clear:both;
  145. float:left;
  146. width:100%;
  147. background:url(images/footer.png) top left no-repeat;
  148. color:#fff;
  149. padding-top:20px;
  150. }
  151. /* ////////////////////// Layout ////////////////////// */
  152.  
  153.  
  154.  
  155. /* ////////////////////// Header, Footer and Top Navigation ////////////////////// */
  156. #header .logo
  157. {
  158. width:280px;
  159. float:left;
  160. margin-bottom:30px;
  161. }
  162.  
  163. #header .logo a
  164. {
  165. float:left;
  166. background:url(images/logo.png) top left no-repeat;
  167. width:201px;
  168. height:63px;
  169. /*margin-bottom:30px;*/
  170. }
  171.  
  172. #header .ad
  173. {
  174. float:right;
  175. }
  176.  
  177. #navigation
  178. {
  179. position:relative;
  180. clear:both;
  181. float:left;
  182. width:960px;
  183. margin:0 0 10px 0;
  184. padding:10px 10px 0 10px;
  185. background:url(images/navigation.png) top left;
  186. list-style:none;
  187.  
  188. /*position:absolute;
  189. bottom:10px;
  190. right:0px;*/
  191. }
  192.  
  193. #navigation li
  194. {
  195. position:relative;
  196. float:left;
  197. margin:0;
  198. padding:0;
  199. width:auto;
  200. }
  201.  
  202. #navigation li ul
  203. {
  204. z-index:10;
  205. position:absolute;
  206. top:31px;
  207. left:-9999px;
  208. float:right;
  209. margin:0;
  210. padding:0;
  211. list-style:none;
  212. background:url(images/navigation_sub.png) top left;
  213. }
  214.  
  215. #navigation li:hover ul
  216. {
  217. left:0px;
  218. }
  219.  
  220. #navigation li ul li, #navigation li ul li ul li
  221. {
  222. float:left;
  223. width:200px;
  224. position: relative;
  225. }
  226.  
  227. #navigation li a
  228. {
  229. display: block;
  230. float:left;
  231. padding:8px 10px;
  232. font-weight:bold;
  233. text-transform:uppercase;
  234. color:#666;
  235. }
  236.  
  237. #navigation li ul li a
  238. {
  239. width:170px;
  240. margin:5px;
  241. }
  242.  
  243. #navigation li ul li a:hover
  244. {
  245. background:url(images/navigation.png) top left;
  246. }
  247.  
  248. #navigation li ul li:hover
  249. {
  250. background:none;
  251. }
  252.  
  253. #navigation li:hover, #navigation li.current_page_item, #navigation li.current_page_ancestor
  254. {
  255. background:url(images/navigation.png) top left;
  256. }
  257.  
  258. #navigation li ul li ul, #navigation li:hover ul li ul
  259. {
  260. top:0px;
  261. left:-9999px;
  262. }
  263.  
  264. #navigation li ul li:hover ul
  265. {
  266. left:200px;
  267. }
  268.  
  269. #navigation li.rss
  270. {
  271. float:right;
  272. }
  273. /* ////////////////////// Header, Footer and Top Navigation ////////////////////// */
  274.  
  275.  
  276.  
  277. /* ////////////////////// Main Content ////////////////////// */
  278. .heading
  279. {
  280. padding-bottom:5px;
  281. margin-bottom:30px;
  282. border-bottom:1px solid #E0E4CC;
  283. }
  284.  
  285. .post
  286. {
  287. clear:both;
  288. float:left;
  289. width:100%;
  290. margin-bottom:30px;
  291. padding-bottom:10px;
  292. border-bottom:1px solid #E0E4CC;
  293. }
  294.  
  295.  
  296. .post h2, .post h2 a
  297. {
  298. color:#69D2E7;
  299. }
  300.  
  301. .post h1, .post h2
  302. {
  303. clear:left;
  304. margin-bottom:15px;
  305. float:left;
  306.  
  307. width:auto !important;
  308. width:500px;
  309. max-width:500px;
  310. }
  311.  
  312. .post .comment_count
  313. {
  314. float:right;
  315. width:29px;
  316. height:27px;
  317. background:url(images/comment.png) top right no-repeat;
  318. padding:5px 0 0 0;
  319. text-align:center;
  320. font-weight:bold;
  321. margin:0 0 15px 0;
  322. line-height:15px;
  323. }
  324.  
  325. .post .comment_count a
  326. {
  327. color:#666;
  328. float:left;
  329. width:100%;
  330. }
  331.  
  332. .post .meta
  333. {
  334. clear:left;
  335. float:left;
  336. margin:0;
  337. /*font-size:11px;
  338. margin-bottom:20px;*/
  339. font-size:11px;
  340. font-weight:bold;
  341. text-transform:uppercase;
  342. margin-top:0;
  343. margin-bottom:5px;
  344. color:#aaa;
  345. }
  346.  
  347. .post .meta a
  348. {
  349. color:#999;
  350. }
  351.  
  352. .post .postinfo
  353. {
  354. float:left;
  355. clear:both;
  356. margin-top:10px;
  357. margin-bottom:20px;
  358. padding:20px;
  359. width:500px;
  360. background:#EEEEEE;
  361. }
  362.  
  363. .post .postinfo h2
  364. {
  365. color:#666;
  366. margin-bottom:10px;
  367. }
  368.  
  369. .post .postinfo ul
  370. {
  371. float:left;
  372. list-style:none;
  373. margin:0 0 -5px 0;
  374. padding:0;
  375. width:50%;
  376. }
  377.  
  378. .post .postinfo ul li
  379. {
  380. clear:both;
  381. margin:0 0 5px 0;
  382. }
  383.  
  384. .post .postinfo ul.post-categories li
  385. {
  386. margin-bottom:0;
  387. padding:5px 0 5px 27px;
  388. background:url(images/folder.png) center left no-repeat;
  389. }
  390.  
  391. .post .postinfo ul.post-categories li a
  392. {
  393. font-weight:bold;
  394. }
  395.  
  396. .post .postinfo ul.tags li
  397. {
  398. float:left;
  399. clear:none;
  400. margin-right:5px;
  401. }
  402.  
  403. .post .postinfo ul.tags li a
  404. {
  405. color:#fff;
  406. background-color:#D14640;
  407. padding:1px 3px;
  408. text-transform:uppercase;
  409. font-size:10px;
  410. }
  411.  
  412. .post .postinfo ul.tags li a:hover
  413. {
  414. background-color:#FA6900;
  415. text-decoration:none;
  416. }
  417.  
  418. .post .postinfo ul.post-categories, .post .postinfo ul.tags li.first
  419. {
  420. clear:left;
  421. }
  422.  
  423. .post a.more-link
  424. {
  425. clear:both;
  426. color:#fff;
  427. float:right;
  428. padding:5px 8px;
  429. margin-top:15px;
  430. margin-bottom:20px;
  431. font-size:10px;
  432. text-transform:uppercase;
  433. background:#F38630 url(images/more-link.jpg) 113px 6px no-repeat;
  434. width:115px;
  435. line-height:12px;
  436. }
  437.  
  438. .post .body
  439. {
  440. clear:both;
  441. }
  442.  
  443. .post .body h1, .post .body h2, .post .body h3
  444. {
  445. float:none;
  446. margin:0 0 10px 0;
  447. }
  448.  
  449. .post .body p, .post .body ul, .post .body ol, .post .body blockquote, .post .body img
  450. {
  451. margin:0 0 20px 0;
  452. }
  453.  
  454. .post .body p, .post .body img
  455. {
  456. padding:0;
  457. }
  458.  
  459. .post .body img
  460. {
  461. max-width:540px;
  462. }
  463.  
  464. .post img.postimg
  465. {
  466. width:100%;
  467. margin:0;
  468. }
  469.  
  470. blockquote
  471. {
  472. margin-left:20px;
  473. margin-right:20px;
  474. padding:40px 30px 10px 30px;
  475. border:1px dotted #fff;
  476. background:#FFF5CA url(images/quote.png) 10px 10px no-repeat;
  477. text-align:justify;
  478. }
  479.  
  480. .post .body blockquote p
  481. {
  482. /*margin:0;*/
  483. }
  484.  
  485. .post .body a
  486. {
  487. font-weight:bold;
  488. }
  489.  
  490. .post .body img.alignright {float:right;margin:0 0 10px 10px}
  491. .post .body img.alignleft {float:left;margin:0 10px 10px 0}
  492. .post .body img.aligncenter {display: block; margin-left: auto; margin-right: auto}
  493. .post .body a img.alignright {float:right; }
  494. .post .body a img.alignleft {float:left;}
  495. .post .body a img.aligncenter {display: block; margin-left: auto; margin-right: auto}
  496.  
  497. .small
  498. {
  499. width:255px;
  500. float:left;
  501. clear:none;
  502. margin-right:30px;
  503. border:none;
  504. }
  505.  
  506. .small .sbody
  507. {
  508. clear:both;
  509. }
  510.  
  511. .small h2
  512. {
  513. font-size:20px;
  514. }
  515.  
  516. .small img.postimg
  517. {
  518. margin-bottom:0;
  519. }
  520.  
  521. .even
  522. {
  523. margin-right:0;
  524. }
  525. /* ////////////////////// Main Content ////////////////////// */
  526.  
  527.  
  528.  
  529. /* ////////////////////// Paging ////////////////////// */
  530. .paging
  531. {
  532. clear:both;
  533. float:left;
  534. width:100%;
  535. }
  536.  
  537. .paging .prev
  538. {
  539. float:left;
  540. width:50%;
  541. }
  542.  
  543. .paging .next
  544. {
  545. float:right;
  546. text-align:right;
  547. width:50%;
  548. }
  549.  
  550. .paging div a
  551. {
  552. float:left;
  553. font-weight:bold;
  554. padding:7px 10px;
  555. margin-bottom:30px;
  556. color:#fff;
  557. background-color:#D14640;
  558. }
  559.  
  560. .paging div a:hover
  561. {
  562. text-decoration:underline;
  563. }
  564.  
  565. .paging .prev a
  566. {
  567. float:left;
  568. }
  569.  
  570. .paging .next a
  571. {
  572. float:right;
  573. }
  574.  
  575. /*
  576. .paging
  577. {
  578. clear:both;
  579. float:left;
  580. width:600px;
  581. background:#F5F8E6;
  582. margin:0 -30px;
  583. }
  584.  
  585. .paging .prev
  586. {
  587. float:left;
  588. width:50%;
  589. }
  590.  
  591. .paging .next
  592. {
  593. float:right;
  594. text-align:right;
  595. width:50%;
  596. }
  597.  
  598. .paging div a
  599. {
  600. float:left;
  601. font-weight:bold;
  602. padding:5px;
  603. margin:10px 10px;
  604. }
  605.  
  606. .paging .prev a
  607. {
  608. float:left;
  609. }
  610.  
  611. .paging .next a
  612. {
  613. float:right;
  614. }
  615. */
  616. /* ////////////////////// Paging ////////////////////// */
  617.  
  618.  
  619.  
  620. /* ////////////////////// Side Bar ////////////////////// */
  621. #sidebar
  622. {
  623. clear:both;
  624. float:left;
  625. width:100%;
  626. margin:0;
  627. padding:0;
  628. list-style:none;
  629. }
  630.  
  631. #sidebar h2
  632. {
  633. color:#D14640;
  634. text-align:left;
  635. margin-bottom:10px;
  636. }
  637.  
  638. #sidebar li.widget
  639. {
  640. clear:both;
  641. float:left;
  642. width:100%;
  643. margin:0 0 30px 0;
  644. padding:0;
  645. }
  646.  
  647. #sidebar li ul
  648. {
  649. clear:both;
  650. float:left;
  651. width:100%;
  652. margin:0 0 -10px 0;
  653. padding:0;
  654. list-style:none;
  655. width:100%;
  656. }
  657.  
  658. #sidebar li ul li
  659. {
  660. clear:both;
  661. float:left;
  662. width:100%;
  663. margin:0 0 10px 0;
  664. color:#666;
  665. text-align:right;
  666. font-weight:bold;
  667. font-size:13px;
  668. }
  669.  
  670. #sidebar li ul li a
  671. {
  672. color:#666;
  673. float:left;
  674. }
  675.  
  676. #sidebar li ul li ul.children
  677. {
  678. width:100%;
  679. margin:7px 0 0 0;
  680. padding:0;
  681. }
  682.  
  683. #sidebar li ul li ul.children li
  684. {
  685. padding:3px 0;
  686. margin:0 0 0 0;
  687. font-size:12px;
  688. font-weight:normal;
  689. background:url(images/child.jpg) center left no-repeat;
  690. }
  691.  
  692. #sidebar li ul li ul.children li a
  693. {
  694. font-weight:normal;
  695. /*text-transform:uppercase;*/
  696. color:#666;
  697. margin-left:20px;
  698. }
  699.  
  700. #sidebar .search_widget
  701. {
  702. float:left;
  703. margin:-30px -30px 0 -30px;
  704. padding:20px 20px;
  705. width:320px;
  706. height:35px;
  707. background:url(images/search_bg.jpg) bottom left no-repeat;
  708. }
  709.  
  710. #sidebar .search_widget #s
  711. {
  712. float:left;
  713. background:url(images/search.jpg) top left no-repeat;
  714. width:270px;
  715. height:25px;
  716. padding:0;
  717. border:none;
  718. padding: 10px 0 0 10px;
  719. }
  720.  
  721. #sidebar .search_widget #sb
  722. {
  723. float:left;
  724. background:url(images/search_button.jpg) top left no-repeat;
  725. width:40px;
  726. height:35px;
  727. padding:0;
  728. border:none;
  729. cursor:pointer;
  730. }
  731.  
  732. #creditsfix
  733. {
  734. clear:both;
  735. float:left;
  736. width:100%;
  737. height:52px;
  738. }
  739.  
  740. #credits
  741. {
  742. float:left;
  743. position:absolute;
  744. right:30px;
  745. bottom:0px;
  746. width:320px;
  747. height:47px;
  748. padding:0;
  749. margin:0 0 5px 0;
  750. float:left;
  751. list-style:none;
  752. }
  753.  
  754. #credits li
  755. {
  756. clear:both;
  757. float:left;
  758. width:100%;
  759. margin:0 0 5px 0;
  760. padding:0;
  761. }
  762.  
  763. #credits li a
  764. {
  765. float:right;
  766. color:#666;
  767. font-size:10px;
  768. text-transform:uppercase;
  769. }
  770.  
  771. #credits li img
  772. {
  773. vertical-align:middle;
  774. margin-right:5px;
  775. }
  776. /* ////////////////////// Side Bar ////////////////////// */
  777.  
  778.  
  779.  
  780. /* ////////////////////// Comments ////////////////////// */
  781. #comments
  782. {
  783. clear:both;
  784. float:left;
  785. width:100%;
  786. margin:0;
  787. padding:0px;
  788. background:#fff;
  789. }
  790.  
  791. #comments a
  792. {
  793. /*color:#666;*/
  794. }
  795.  
  796. #comments p.notice
  797. {
  798. margin:0 0 30px 0;
  799. padding:0px;
  800. text-align:center;
  801. font-weight:bold;
  802. }
  803.  
  804. #comments .commentlist
  805. {
  806. clear:both;
  807. list-style:none;
  808. margin:0 0 30px 0;
  809. padding:0;
  810. }
  811.  
  812. #comments .commentlist li
  813. {
  814. clear:both;
  815. padding:0px;
  816. margin:0 0 20px 0;
  817. }
  818.  
  819. #comments .commentlist li div.comment-body
  820. {
  821. padding:20px;
  822. background:#F5F8E6;
  823. background:#F8FAEF;
  824. background:#F7F7F7;
  825. background:#F5F8E6;
  826. border:1px solid #E0E4CC;
  827. }
  828.  
  829. #comments .commentlist li.pingback div.comment-body, #comments .commentlist li.trackback div.comment-body
  830. {
  831. background:#F7F7F7;
  832. border:none;
  833. }
  834.  
  835. #comments .commentlist li div.comment-author .avatar
  836. {
  837. padding:0;
  838. margin:0 10px 0 0;
  839. float:left;
  840. width:50px;
  841. height:50px;
  842. border:5px solid #E0E4CC;
  843. }
  844.  
  845. #comments .commentlist li div.comment-author cite
  846. {
  847. font-style:normal;
  848. font-weight:bold;
  849. font-size:14px;
  850. color:#D14640;
  851. text-transform:uppercase;
  852. }
  853.  
  854. #comments .commentlist li div.comment-author .says
  855. {
  856. margin-left:3px;
  857. display:none;
  858. }
  859.  
  860. #comments .commentlist li div.comment-meta
  861. {
  862. margin-bottom:10px;
  863. font-size:10px;
  864. text-transform:uppercase;
  865. }
  866.  
  867. #comments .commentlist li div.comment-meta a
  868. {
  869. text-decoration:none;
  870. }
  871.  
  872. #comments .commentlist li p
  873. {
  874. padding:0;
  875. margin:0 0 10px 0;
  876. }
  877.  
  878. #comments .commentlist li .reply
  879. {
  880. float:right;
  881. font-weight:bold;
  882. }
  883.  
  884. #comments .commentlist li .reply a
  885. {
  886. float:left;
  887. color:#666;
  888. background-color:#C8CEAA;
  889. margin:10px 0 0 0;
  890. padding:5px 8px;
  891. text-transform:uppercase;
  892. font-size:11px;
  893. }
  894.  
  895. #comments .commentlist li.pingback .reply, #comments .commentlist li.trackback .reply
  896. {
  897. display:none;
  898. }
  899.  
  900. #comments .commentlist li ul.children
  901. {
  902. float:left;
  903. clear:both;
  904. list-style:none;
  905. padding:0 0 0 20%;
  906. margin:0;
  907. width:80%;
  908. /*background:url(images/comment_reply.jpg) top left no-repeat;*/
  909. }
  910.  
  911. #comments .commentlist li ul.children li
  912. {
  913. clear:both;
  914. float:left;
  915. margin:20px 0 0 0;
  916. padding:0;
  917. width:100%;
  918. }
  919.  
  920. #comments .commentlist li #respond
  921. {
  922. margin:20px 0 0 0;
  923. }
  924.  
  925. #comments .commentlist li:after, #comments .commentlist li div.comment-body:after, #comments .commentlist li ul.children li:after
  926. {
  927. content:"";
  928. display:block;
  929. height:0;
  930. clear:both;
  931. visibility: hidden;
  932. }
  933.  
  934.  
  935.  
  936. #comments #respond
  937. {
  938. clear:both;
  939. margin:0 0 30px 0;
  940. padding:20px 20px 0 20px;
  941. background:#F7F7F7;
  942. border:1px solid #eee;
  943. }
  944.  
  945. #comments #respond .cancel-comment-reply
  946. {
  947. float:left;
  948. margin:-10px 0 20px 0;
  949. text-transform:uppercase;
  950. }
  951.  
  952. #comments #respond .cancel-comment-reply small a
  953. {
  954. float:left;
  955. }
  956.  
  957. #comments #respond .form
  958. {
  959. clear:both;
  960. /*float:left;*/
  961. margin:0;
  962. padding:0;
  963. }
  964.  
  965. #comments #respond .form p
  966. {
  967. position:relative;
  968. float:left;
  969. width:100%;
  970. margin:0 0 20px 0;
  971. padding:0;
  972. }
  973.  
  974. #comments #respond .form p label
  975. {
  976. float:left;
  977. width:35%;
  978. margin-top:4px;
  979. }
  980.  
  981. #comments #respond .form p label small
  982. {
  983. margin-left:5px;
  984. font-size:10px;
  985. }
  986.  
  987. #comments #respond .form .tf, #comments #respond .form textarea.tf
  988. {
  989. float:right;
  990. width:60%;
  991. padding:7px;
  992. font-size:12px;
  993. color:#666;
  994. background:#eee;
  995. border-top:2px solid #ddd;
  996. border-bottom:none;
  997. border-right:none;
  998. border-left:none;
  999. }
  1000.  
  1001. #comments #respond .form #submit
  1002. {
  1003. float:right;
  1004. padding:5px;
  1005. border:none;
  1006. background:#D14640;
  1007. color:#fff;
  1008. font-size:11px;
  1009. font-weight:bold;
  1010. text-transform:uppercase;
  1011. cursor:pointer;
  1012. }
  1013. /* ////////////////////// Comments ////////////////////// */
  1014.  
  1015.  
  1016.  
  1017. /* ////////////////////// Commons ////////////////////// */
  1018. ul.list
  1019. {
  1020. margin:0;
  1021. padding:0;
  1022. list-style:none;
  1023. }
  1024.  
  1025. ul.list li
  1026. {
  1027. margin:0 0 5px 0;
  1028. padding:0;
  1029. }
  1030.  
  1031. ul.list li.gap
  1032. {
  1033. margin-bottom:15px;
  1034. }
  1035. /* ////////////////////// Commons ////////////////////// */
  1036.  
  1037.  
  1038.  
  1039. /* ////////////////////// Fixing Dear Mr Internet Explorer ////////////////////// */
  1040. .ie7 #comments { background:none; }
  1041. .ie7 #comments .commentlist li div.comment-body { display:inline-block; }
  1042. .ie7 #comments #respond, .opera #comments #respond
  1043. {
  1044. padding-bottom:20px;
  1045. margin-top:-20px;
  1046. margin-bottom:30px;
  1047. }
  1048. .ie7 #creditsfix { height:82px; }
  1049. .ie7 #header { z-index:5; }
  1050. .ie7 #navigation { float:none; }
  1051. /* ////////////////////// Fixing Dear Mr Internet Explorer ////////////////////// */
  1052.  
  1053.  
  1054.  
  1055. /* ////////////////////// Hacks ////////////////////// */
  1056. .clearfix:after
  1057. {
  1058. content:"";
  1059. display:block;
  1060. height:0;
  1061. clear:both;
  1062. visibility: hidden;
  1063. }
  1064.  
  1065. .clearfix
  1066. {
  1067. display:inline-block;
  1068. }
  1069.  
  1070. /* Hides from IE-mac \*/
  1071. * html .clearfix{height: 1%;}
  1072. .clearfix{display: block;}
  1073. /* End hide from IE-mac */
  1074. /* ////////////////////// Hacks ////////////////////// */
  1075.  
  1076. .column { width: 24%; float: left; margin-left: 1%; }
  1077. .column.first { clear: left; margin-left: 0; }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement