Advertisement
Guest User

Coding for hockeyeveryday.com

a guest
Apr 2nd, 2012
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 24.46 KB | None | 0 0
  1. /*
  2. Theme Name: Denitto
  3. Theme URI: http://newwpthemes.com/denitto-free-wordpress-theme/
  4. Description: Free General/Blog WordPress theme by NewWptTemes
  5. Author: NewWpThemes
  6. Author URI: http://newwpthemes.com
  7. Version: 1.0
  8. Tags: black, blue, three-columns, mixed-columns, right-sidebar
  9. */
  10.  
  11. /* INDEX:
  12.  
  13. =GENERAL
  14. =LAYOUT
  15. =HEADER
  16. =MENUS
  17. =POST
  18. =SITEMAP
  19. =CONTACT FORM
  20. =SLIDER
  21. =WP-PAGENAVI
  22. =FOOTER
  23. =WIDGETS
  24. =COMMENTS
  25. */
  26.  
  27. /* =GENERAL
  28. -------------------------------------------------------------- */
  29.  
  30. body {
  31. background: #090909 url(images/background.jpg) center top no-repeat;
  32. color: #EEF0F1;
  33. }
  34.  
  35. a {
  36. color: #16C1E6;
  37. text-decoration: underline;
  38. }
  39.  
  40. a:hover, a:focus {
  41. color: #46C9F2;
  42. text-decoration: none;
  43. }
  44.  
  45. a:focus {
  46. outline: none;
  47. }
  48.  
  49. /* =LAYOUT
  50. -------------------------------------------------------------- */
  51.  
  52. #container {
  53. width: 960px;
  54. margin: 0 auto;
  55. }
  56.  
  57. #main {
  58. padding: 15px;
  59. background: #0E0E0E;
  60. }
  61.  
  62. #main-fullwidth {
  63. padding: 15px;
  64. background: #0E0E0E;
  65. }
  66.  
  67. #content {
  68. overflow: hidden;
  69. float: left;
  70. width: 615px;
  71. }
  72.  
  73. #sidebar-primary {
  74. overflow: hidden;
  75. float: left;
  76. width: 300px;
  77. margin-left: 14px;
  78. border-left: 1px solid #383C3F;
  79. }
  80.  
  81. /* =HEADER
  82. -------------------------------------------------------------- */
  83.  
  84. #header {
  85. height: 88px;
  86. padding:20px 0;
  87. }
  88.  
  89. .logo {
  90. float: left;
  91. }
  92.  
  93. .logo h1.site_title {
  94. margin: 0;
  95. padding:0;
  96. font-family: Segoe UI, Helvetica, Sans-serif;
  97. font-size:48px;
  98. line-height: 40px;
  99. font-weight: bold;
  100. }
  101.  
  102. .logo h1.site_title a, .logo h1.site_title a:hover {
  103. color: #FFFFFF;
  104. text-decoration: none;
  105. }
  106.  
  107. .logo h2.site_description {
  108. margin: 20;
  109. padding:0;
  110. color: #FFFFFF;
  111. font-family: Arial, Helvetica, Sans-serif;
  112. font-size:14px;
  113. line-height: 50px;
  114. }
  115.  
  116. .header-right {
  117. float: right;
  118. }
  119.  
  120. #top-social-profiles {
  121. padding-top: 10px;
  122. height: 32px;
  123. text-align: right;
  124.  
  125. }
  126. #top-social-profiles img {
  127. margin: 0 0 0 6px !important;
  128. }
  129.  
  130. #top-social-profiles img:hover {
  131. opacity: 0.8;
  132. }
  133. #top-social-profiles .widget-container {
  134. background: none;
  135. padding: 0;
  136. border: 0;
  137. }
  138.  
  139. /* =MENUS
  140. -------------------------------------------------------------- */
  141.  
  142. /* Menu Primary
  143. ----------------------------*/
  144.  
  145. .menu-primary-container {
  146. float: right;
  147. padding:0;
  148. position:relative;
  149. height: 34px;
  150. background: #0C0C0E;
  151. z-index: 400;
  152. -moz-border-radius: 5px 0 0 5px;
  153. -khtml-border-radius: 5px 0 0 5px;
  154. -webkit-border-radius: 5px 0 0 5px;
  155. border-radius: 5px 0 0 5px;
  156. }
  157.  
  158. .menu-primary {
  159. }
  160.  
  161. .menu-primary ul {
  162. min-width: 160px;
  163. }
  164.  
  165. /* First Level - Menu Primary */
  166.  
  167. .menu-primary li a {
  168. color: #FFFFFF;
  169. padding: 12px 15px 11px 15px;
  170. text-decoration: none;
  171. font-family: Arial, Helvetica, Sans-serif;
  172. font-size: 11px;
  173. text-transform: uppercase;
  174. font-weight: normal;
  175. }
  176.  
  177. .menu-primary li a:hover, .menu-primary li a:active, .menu-primary li a:focus,
  178. .menu-primary li:hover > a, .menu-primary li.current-cat > a, .menu-primary li.current_page_item > a, .menu-primary li.current-menu-item > a {
  179. color: #86CEE6;
  180. outline: 0;
  181. background: none;
  182. }
  183.  
  184. /* Child Levels - Menu Primary */
  185.  
  186. .menu-primary li li a {
  187. color: #fff;
  188. text-transform: none;
  189. background: #0C0C0E;
  190. padding: 10px 15px;
  191. margin: 0;
  192. border: 0;
  193. font-weight: normal;
  194. }
  195.  
  196. .menu-primary li li a:hover, .menu-primary li li a:active, .menu-primary li li a:focus,
  197. .menu-primary li li:hover > a, .menu-primary li li.current-cat > a, .menu-primary li li.current_page_item > a, .menu-primary li li.current-menu-item > a {
  198. color: #fff;
  199. background: #3EB8DD;
  200. outline: 0;
  201. border-bottom:0;
  202. text-decoration: none;
  203. }
  204.  
  205.  
  206. /* Arrows Menu Primary */
  207.  
  208. .menu-primary a.sf-with-ul {
  209. padding-right: 20px;
  210. min-width: 1px;
  211. }
  212. .menu-primary .sf-sub-indicator {
  213. position: absolute;
  214. display: block;
  215. overflow: hidden;
  216. right: 0;
  217. top: 0;
  218. padding: 11px 10px 0 0;
  219. }
  220.  
  221. .menu-primary li li .sf-sub-indicator {
  222. padding: 9px 10px 0 0;
  223. }
  224.  
  225. /* Shadows Menu Primary */
  226.  
  227. .wrap-menu-primary .sf-shadow ul {
  228. background: url('images/menu-primary-shadow.png') no-repeat bottom right;
  229. }
  230.  
  231. /* Menu Secondary
  232. ----------------------------*/
  233.  
  234. .menu-secondary-container { display:none; }
  235. position:relative;
  236. height: 40px;
  237. z-index: 300;
  238. background: url(images/menu-secondary-bg.png) left top repeat-x;
  239. }
  240.  
  241. .menu-secondary {}
  242.  
  243. .menu-secondary ul {
  244. min-width: 160px;
  245. }
  246.  
  247. /* First Level - Menu Secondary */
  248. .menu-secondary li a {
  249. color: #FEFEFF;
  250. padding: 14px 15px ;
  251. text-decoration: none;
  252. font-family: Arial, Helvetica, Sans-serif;
  253. font-size: 12px;
  254. text-transform: uppercase;
  255. font-weight: bold;
  256. }
  257.  
  258. .menu-secondary li a:hover, .menu-secondary li a:active, .menu-secondary li a:focus,
  259. .menu-secondary li:hover > a, .menu-secondary li.current-cat > a, .menu-secondary li.current_page_item > a, .menu-secondary li.current-menu-item > a {
  260. color: #3E9AC0;
  261. background:none;
  262. outline: 0;
  263. }
  264.  
  265. /* Child Levels - Menu Secondary */
  266.  
  267. .menu-secondary li li a {
  268. color: #fff;
  269. background: #0C0C0E;
  270. padding: 10px 15px;
  271. text-transform: none;
  272. margin: 0;
  273. font-weight: normal;
  274. }
  275.  
  276. .menu-secondary li li a:hover, .menu-secondary li li a:active, .menu-secondary li li a:focus,
  277. .menu-secondary li li:hover > a, .menu-secondary li li.current-cat > a, .menu-secondary li li.current_page_item > a, .menu-secondary li li.current-menu-item > a {
  278. color: #fff;
  279. background: #3EB8DD;
  280. outline: 0;
  281. }
  282.  
  283. /* Arrows - Menu Secondary */
  284.  
  285. .menu-secondary a.sf-with-ul {
  286. padding-right: 26px;
  287. min-width: 1px;
  288. }
  289. .menu-secondary .sf-sub-indicator {
  290. position: absolute;
  291. display: block;
  292. overflow: hidden;
  293. right: 0;
  294. top: 0;
  295. padding: 12px 13px 0 0;
  296. }
  297.  
  298. .menu-secondary li li .sf-sub-indicator {
  299.  
  300. padding: 9px 13px 0 0;
  301. }
  302.  
  303. /* Shadows - Menu Secondary */
  304.  
  305. .wrap-menu-secondary .sf-shadow ul {
  306. background: url('images/menu-secondary-shadow.png') no-repeat bottom right;
  307. }
  308.  
  309. /* =POST
  310. -------------------------------------------------------------- */
  311.  
  312. /* Post General
  313. ----------------------------*/
  314.  
  315. .post {
  316. margin-bottom: 15px;
  317. border-bottom: 1px solid #383C3F;
  318. }
  319.  
  320. .post-box {
  321. width: 300px;
  322. height: 300px;
  323. float: left;
  324. margin-left: 15px;
  325. overflow: hidden;
  326. }
  327.  
  328. .post-wrap div:first-child {
  329. margin-left: 0;
  330. }
  331.  
  332. .page, .post-single {
  333. border-bottom: 0;
  334. margin-bottom: 0;
  335. }
  336.  
  337. .title {
  338. color: #EEF0F1;
  339. margin: 0 0 10px 0;
  340. padding: 0;
  341. font-family: Arial, Helvetica, Sans-serif;
  342. font-size: 16px;
  343. line-height: 16px;
  344. font-weight: bold;
  345. }
  346.  
  347. .post-single .title {
  348. font-size: 24px;
  349. line-height: 24px;
  350. }
  351.  
  352. .title a {
  353. color: #EEF0F1;
  354. text-decoration: none;
  355. }
  356.  
  357. .title a:hover {
  358. color: #3DB7DC;
  359. text-decoration: none;
  360. }
  361.  
  362. .entry {
  363. line-height: 20px;
  364. }
  365.  
  366. .featured_image {
  367. padding: 6px;
  368. border: 1px solid #3D3E3C;
  369. background: #0E0E0E;
  370. }
  371.  
  372. .page-title {
  373. color: #EEF0F1;
  374. margin: 0px 0 10px 0;
  375. padding: 0 0 10px 0;
  376. font-weight: bold;
  377. text-transform: uppercase;
  378. font-size: 20px;
  379. font-family: Arial, Helvetica, Sans-serif;
  380. border-bottom: 2px solid #383C3F;
  381. }
  382.  
  383. /* Post Metas
  384. ----------------------------*/
  385.  
  386. .postmeta-primary {
  387. color: #B7D5DA;
  388. font-size: 12px;
  389. line-height: 18px;
  390. padding: 0 0 10px 0;
  391. }
  392.  
  393. .postmeta-secondary {
  394. color: #B7D5DA;
  395. font-size: 12px;
  396. line-height: 18px;
  397. padding: 0 0 10px 0;
  398. }
  399.  
  400. .postmeta-primary span, .postmeta-secondary span {
  401. background: url(images/meta-separator.png) left center no-repeat;
  402. padding:3px 0 3px 10px;
  403. }
  404.  
  405.  
  406. .postmeta-primary span:first-child, .postmeta-secondary span:first-child {
  407. background: none;
  408. padding-left: 0;
  409. }
  410.  
  411. /* Read More
  412. ----------------------------*/
  413.  
  414. .readmore {
  415. margin-bottom: 15px;
  416. float: right;
  417. }
  418.  
  419. .readmore a {
  420. color: #999;
  421. padding: 8px 0;
  422. font-size: 12px;
  423. line-height: 12px;
  424. display: inline-block;
  425. text-decoration: none;
  426. text-transform: uppercase;
  427. }
  428.  
  429. .readmore a:hover {
  430. color: #FFFFFF;
  431. text-decoration: none;
  432. }
  433.  
  434. /* =SITEMAP
  435. -------------------------------------------------------------- */
  436. .sitemap {
  437. }
  438.  
  439. .sitemap-col {
  440. width: 30%;
  441. padding: 0 0 0 10px;
  442. }
  443.  
  444. .sitemap-col-archives {
  445. width: 45%;
  446. padding: 0 0 0 10px;
  447. }
  448.  
  449. .sitemap h2 {
  450. font-size: 18px;
  451. font-weight: bold;
  452. border-bottom: 2px solid #ddd;
  453. padding: 0 0 10px 0;
  454. margin: 0 0 10px 0;
  455. }
  456.  
  457. .sitemap h3 {
  458. font-size: 14px;
  459. font-weight: bold;
  460. padding: 0;
  461. margin: 0 0 10px 0;
  462. }
  463.  
  464. .sitemap-list {
  465. font-size: 13px;
  466. line-height: 22px;
  467. }
  468.  
  469. .sitemap-list, .sitemap-list ul {
  470. padding: 0 0 0 20px;
  471. }
  472.  
  473. /* =CONTACT FORM
  474. -------------------------------------------------------------- */
  475. .contact-form {
  476. }
  477.  
  478. .contact-form-label {
  479. width: 90px;
  480. font-weight: bold;
  481. font-size: 14px;
  482. padding: 7px 0;
  483. }
  484.  
  485. .contact-form-input {
  486. margin-left: 90px;
  487. }
  488.  
  489. .contact-form input[type=text] {
  490. padding: 6px;
  491. width: 60%;
  492. margin-bottom: 20px;
  493. border: 1px solid #ccc;
  494. background: #fff;
  495. }
  496.  
  497. .contact-form input[type=submit] {
  498. padding: 5px 50px;
  499. border: 1px solid #ccc;
  500. background: #eee;
  501. }
  502. .contact-form textarea {
  503. width: 96%;
  504. padding: 6px;
  505. height: 160px;
  506. margin-bottom: 20px;
  507. border: 1px solid #ccc;
  508. background: #fff;
  509. }
  510.  
  511. .contact-form-required {
  512. color: red;
  513. }
  514.  
  515. /* =SLIDER
  516. -------------------------------------------------------------- */
  517.  
  518. .fp-slider {
  519. margin: 0 0 15px 0;
  520. }
  521.  
  522. .fp-slides-container {}
  523.  
  524. .fp-slides, .fp-thumbnail, .fp-prev-next, .fp-nav {
  525. width: 615px;
  526. }
  527.  
  528. .fp-slides, .fp-thumbnail {
  529. height: 300px;
  530. overflow: hidden;
  531. position: relative;
  532. }
  533.  
  534. .fp-title {
  535. font-family: Arial, Helvetica, Sans-serif;
  536. color: #fff;
  537. font-size: 18px;
  538. font-weight: bold;
  539. padding: 0 0 2px 0;
  540. margin: 0;
  541. }
  542.  
  543. .fp-title a, .fp-title a:hover {
  544. color: #fff;
  545. text-decoration: none;
  546. }
  547.  
  548. .fp-content {
  549. position: absolute;
  550. overflow: hidden;
  551. padding: 10px 15px;
  552. bottom: 0;
  553. left: 0;
  554. right: 0;
  555. background: #111;
  556. opacity: 0.7;
  557. filter: alpha(opacity = 70);
  558. }
  559.  
  560. .fp-content p {
  561. color: #fff;
  562. padding: 0;
  563. margin: 0;
  564. line-height: 18px;
  565. }
  566.  
  567. .fp-more, .fp-more:hover{
  568. color: #fff;
  569. font-weight: bold;
  570. }
  571.  
  572. .fp-nav {
  573. height: 12px;
  574. text-align: center;
  575. padding: 10px 0;
  576. background: #090909;
  577. }
  578.  
  579. .fp-pager a {
  580. background-image: url(images/featured-pager.png);
  581. cursor:pointer;
  582. margin: 0 8px 0 0;
  583. padding: 0;
  584. display: inline-block;
  585. width: 12px;
  586. height: 12px;
  587. overflow: hidden;
  588. text-indent: -999px;
  589. background-position: 0 0;
  590. float: none;
  591. line-height: 1;
  592. opacity: 0.7;
  593. filter: alpha(opacity = 70);
  594. }
  595.  
  596. .fp-pager a:hover, .fp-pager a.activeSlide {
  597. text-decoration: none;
  598. background-position: 0 -112px;
  599. opacity: 1.0;
  600. filter: alpha(opacity = 100);
  601. }
  602.  
  603. .fp-prev-next-wrap {
  604. position: relative;
  605. z-index: 200;
  606. }
  607.  
  608. .fp-prev-next {
  609. position: absolute;
  610. bottom: 130px;
  611. left: 0;
  612. right: 0;
  613. height: 37px;
  614. }
  615.  
  616. .fp-prev {
  617. float:left;
  618. margin-left: 14px;
  619. width:37px;
  620. height:37px;
  621. background:url(images/featured-prev.png) left top no-repeat;
  622. opacity: 0.6;
  623. filter: alpha(opacity = 60);
  624. }
  625.  
  626. .fp-prev:hover {
  627. opacity: 0.8;
  628. filter: alpha(opacity = 80);
  629. }
  630.  
  631. .fp-next {
  632. float:right;
  633. width:36px;
  634. height:37px;
  635. margin-right: 14px;
  636. background:url(images/featured-next.png) right top no-repeat;
  637. opacity: 0.6;
  638. filter: alpha(opacity = 60);
  639. }
  640.  
  641. .fp-next:hover {
  642. opacity: 0.8;
  643. filter: alpha(opacity = 80);
  644. }
  645.  
  646. /* =WP-PAGENAVI
  647. -------------------------------------------------------------- */
  648.  
  649. .wp-pagenavi {
  650. float: left;
  651. }
  652.  
  653. .wp-pagenavi a, .wp-pagenavi span {
  654. text-decoration: none;
  655. padding: 5px 8px;
  656. margin: 2px;
  657. font-size: 15px;
  658. line-height: 15px;
  659. float: left;
  660. }
  661.  
  662. .wp-pagenavi a, .wp-pagenavi a:link, .wp-pagenavi a:active {
  663. color: #D8DCDF;
  664. background:none;
  665. }
  666.  
  667. .wp-pagenavi span.current {
  668. font-weight: bold;
  669. color: #FFFFFF;
  670. background: #9FC9E9 url(images/wp-pagenavi-bg.png) left top repeat-x;
  671. }
  672.  
  673. .wp-pagenavi a:hover {
  674. color: #0E0E0E;
  675. background: #FCFCFC url(images/wp-pagenavi-bg.png) left -121px repeat-x;
  676. }
  677.  
  678. .wp-pagenavi span.pages {
  679. color: #D8DCDF;
  680. background: none;
  681. padding: 4px 8px 4px 0;
  682. }
  683.  
  684. .wp-pagenavi span.extend {
  685. background:transparent;
  686. color: #D8DCDF;
  687. background: none;
  688. }
  689.  
  690. /* =FOOTER
  691. -------------------------------------------------------------- */
  692.  
  693. #footer-container {
  694. }
  695.  
  696. #footer {
  697. margin: 0 auto;
  698. padding-bottom: 15px;
  699. }
  700.  
  701.  
  702. #copyrights {
  703. color: #FFFFFF;
  704. background: #35393C;
  705. text-align: center;
  706. padding: 20px 0;
  707. }
  708.  
  709. #copyrights a {
  710. color: #FFFFFF;
  711. }
  712.  
  713. #copyrights a:hover {
  714. color: #FFFFFF;
  715. text-decoration: none;
  716. }
  717.  
  718. #credits {
  719. color: #FFFFFF;
  720. text-align: center;
  721. font-size: 11px;
  722. padding: 10px 0 0 0;
  723. }
  724.  
  725. #credits a {
  726. color: #FFFFFF;
  727. text-decoration: none;
  728. }
  729.  
  730. #credits a:hover {
  731. text-decoration: none;
  732. color: #FFFFFF;
  733. }
  734.  
  735. /* =WIDGETS
  736. -------------------------------------------------------------- */
  737.  
  738. /* Widgets Defaults
  739. ----------------------------*/
  740.  
  741. .widget-container {
  742. list-style-type: none;
  743. list-style: none;
  744. margin: 0 0 15px 10px;
  745. padding: 0;
  746. color: #D2D7DC;
  747. font-size: 13px;
  748. }
  749.  
  750. .widget-container a {
  751. color: #D2D7DC;
  752. text-decoration: none;
  753. }
  754.  
  755. .widget-container a:hover {
  756. color: #3EB8DD;
  757. text-decoration: none;
  758. }
  759.  
  760. .widgettitle {
  761. margin: 0 0 10px 0;
  762. padding: 6px 0 4px 4px;
  763. border-bottom: 1px dashed #414548;
  764. }
  765.  
  766. .widgettitle, .widgettitle a, .widgettitle a:hover {
  767. color: #F0F2F3;
  768. font-size: 16px;
  769. line-height: 16px;
  770. font-family: Arial, Helvetica, Sans-serif;
  771. font-weight: bold;
  772. text-decoration: none;
  773. text-transform: uppercase;
  774. }
  775.  
  776. .widget ul {
  777. list-style-type: none;
  778. list-style: none;
  779. margin: 0;
  780. padding: 0;
  781. }
  782.  
  783. .widget ul li {
  784. padding: 0 0 9px 0px;
  785. margin: 0 0 8px 0;
  786. border-bottom: 1px dotted #383C3F;
  787. }
  788.  
  789. /* Search
  790. ----------------------------*/
  791.  
  792. #search {
  793. border: 1px solid #fff;
  794. background: #EBEEF0 url(images/search.png) 99% 50% no-repeat;
  795. text-align: left;
  796. padding: 6px 24px 6px 6px;
  797. }
  798.  
  799. #search #s {
  800. background: none;
  801. color: #666;
  802. border: 0;
  803. width: 100%;
  804. padding: 0;
  805. margin: 0;
  806. outline: none;
  807. }
  808.  
  809. #content-search {
  810. width: 300px;
  811. padding: 15px 0;
  812. }
  813.  
  814. /* Wp Calendar
  815. ----------------------------*/
  816.  
  817. #wp-calendar td:hover, #wp-calendar #today {
  818. background: #3DB7DC;
  819. color: #fff;
  820. }
  821.  
  822. #wp-calendar td:hover a, #wp-calendar #today a {
  823. color: #fff;
  824. }
  825.  
  826. /* Text Widget
  827. ----------------------------*/
  828.  
  829. .textwidget {
  830. line-height: 18px;
  831. }
  832.  
  833. /* 125x125 Banners Widget
  834. ----------------------------*/
  835.  
  836. .banners-125 {
  837. text-align: center;
  838. margin-bottom: -10px;
  839. }
  840.  
  841. .banners-125 img {
  842. margin: 0 5px 5px 5px;
  843. }
  844.  
  845.  
  846. /* Posts Widget
  847. ----------------------------*/
  848.  
  849. .posts-widget ul {
  850. list-style-type: none;
  851. list-style: none;
  852. padding: 0;
  853. margin: 10px 0 0 0;
  854. }
  855.  
  856. .posts-widget ul li {
  857. list-style-type: none;
  858. list-style: none;
  859. padding: 0 0 15px 0;
  860. margin: 0 0 15px 0;
  861. border-bottom: 1px solid #383C3F;
  862. }
  863.  
  864. .posts-widgettitle {
  865. font-weight: bold;
  866. padding: 0 0 5px 0;
  867. margin: 0;
  868. font-family: Arial, Helvetica, Sans-serif;
  869. font-size: 14px;
  870. }
  871.  
  872. .posts-widgettitle a {}
  873.  
  874. .posts-widgettitle a:hover {}
  875.  
  876. .posts-widget-meta {
  877. font-style: italic;
  878. padding: 0 0 5px 0;
  879. }
  880.  
  881. .posts-widget-entry {
  882. font-family: Arial, Helvetica, Sans-serif;
  883. line-height: 20px;
  884. }
  885.  
  886. .posts-widget-more {
  887. font-weight: bold;
  888. }
  889.  
  890. .posts-widget-more:hover {}
  891.  
  892. .posts-widget-featured-image {
  893. border: 1px solid #3D3E3C;
  894. padding: 4px;
  895. background-color: #0E0E0E;
  896. }
  897.  
  898. .posts-widget .alignleft {
  899. margin: 0 8px 8px 0;
  900. }
  901.  
  902. .posts-widget .alignright {
  903. margin: 0 0 8px 8px;
  904. }
  905.  
  906. .posts-widget .aligncenter {
  907. margin-bottom: 8px;
  908. }
  909.  
  910. /* Comments Widget
  911. ----------------------------*/
  912.  
  913. .comments-widget ul {
  914. list-style-type: none;
  915. list-style: none;
  916. padding: 0;
  917. margin: 10px 0 0 0;
  918. }
  919.  
  920. .comments-widget ul li {
  921. list-style-type: none;
  922. list-style: none;
  923. padding: 0 0 10px 0;
  924. margin: 0 0 10px 0;
  925. border-bottom: 1px solid #383C3F;
  926. }
  927.  
  928. .comments-widget-author {
  929. text-decoration: none;
  930. font-weight: bold;
  931. padding: 0 0 5px 0;
  932. margin: 0;
  933. }
  934.  
  935. .comments-widget-author:hover {}
  936.  
  937. .comments-widget-entry {
  938. font-family: Arial, Helvetica, Sans-serif;
  939. line-height: 20px;
  940. }
  941.  
  942. .comments-widget-more {
  943. font-weight: bold;
  944. }
  945.  
  946. .comments-widget-more:hover {}
  947.  
  948. .comments-widget-avatar {
  949. border: 1px solid #3D3E3C;
  950. padding: 4px;
  951. background-color: #0E0E0E;
  952. }
  953.  
  954. .comments-widget .alignleft {
  955. margin: 0 8px 0 0;
  956. }
  957.  
  958. .comments-widget .alignright {
  959. margin: 0 0 0 8px;
  960. }
  961.  
  962. .comments-widget .aligncenter {
  963. margin-bottom: 8px;
  964. }
  965.  
  966. /* Info Box Widget
  967. ----------------------------*/
  968.  
  969. .infobox-widget ul {
  970. list-style-type: none;
  971. list-style: none;
  972. padding: 0;
  973. margin: 0;
  974. }
  975.  
  976. .infobox-widget ul li {
  977. list-style-type: none;
  978. list-style: none;
  979. padding: 0;
  980. margin: 5px 0 0 0;
  981. }
  982.  
  983. .infobox-widget ul li a {
  984. text-decoration: none;
  985. }
  986.  
  987. .infobox-widget-description {
  988. line-height: 20px;
  989. }
  990.  
  991. .infobox-widget-more {
  992. font-weight: bold;
  993. }
  994.  
  995. .infobox-widget-more:hover {
  996. }
  997.  
  998.  
  999. .infobox-widget .alignleft {
  1000. margin: 0 10px 10px 0;
  1001. }
  1002.  
  1003. .infobox-widget .alignright {
  1004. margin: 0 0 10px 10px;
  1005. }
  1006.  
  1007. .infobox-widget .aligncenter {
  1008. margin-bottom: 10px;
  1009. }
  1010.  
  1011. .infobox-widget .inbottom {
  1012. margin-top: 10px;
  1013. }
  1014.  
  1015. /* Social Profiles Widget
  1016. ----------------------------*/
  1017. .social-profiles-widget img {
  1018. margin: 0 4px 0 0;
  1019. }
  1020.  
  1021. .social-profiles-widget img:hover {
  1022. opacity: 0.8;
  1023. }
  1024.  
  1025. /* Tabs Widget
  1026. ----------------------------*/
  1027.  
  1028. .tabs-widget {
  1029. list-style: none;
  1030. list-style-type: none;
  1031. margin: 0 0 10px 0;
  1032. padding: 0;
  1033. height: 26px;
  1034. }
  1035.  
  1036. .tabs-widget li {
  1037. list-style: none;
  1038. list-style-type: none;
  1039. margin: 0 0 0 4px;
  1040. padding: 0;
  1041. float: left;
  1042. }
  1043.  
  1044. .tabs-widget li:first-child {
  1045. margin: 0;
  1046. }
  1047.  
  1048. .tabs-widget li a {
  1049. color: #FFFFFF;
  1050. background: url(images/tabs-bg.png) left top repeat-x;
  1051. padding: 6px 16px;
  1052. font-family: Arial, Helvetica, Sans-serif;
  1053. font-weight: bold;
  1054. display: block;
  1055. text-decoration: none;
  1056. font-size: 12px;
  1057. line-height: 12px;
  1058. border-top: 1px solid #0E0E0E;
  1059. }
  1060.  
  1061. .tabs-widget li a:hover, .tabs-widget li a.tabs-widget-current {
  1062. background: url(images/tabs-bg.png) left -126px repeat-x;
  1063. color: #FFFFFF;
  1064. border-top: 1px solid #202127;
  1065. }
  1066.  
  1067. .tabs-widget-content {
  1068. }
  1069.  
  1070. /* Tweets Widget
  1071. ----------------------------*/
  1072.  
  1073. .tweets-widget ul {
  1074. list-style-type: none;
  1075. list-style: none;
  1076. margin: 0;
  1077. padding: 0;
  1078. line-height: 20px;
  1079. font-family: Arial, Helvetica, Sans-serif;
  1080. }
  1081.  
  1082. .tweets-widget ul li {
  1083. list-style-type: none;
  1084. list-style: none;
  1085. padding: 0;
  1086. margin: 15px 0 0 0;
  1087. }
  1088.  
  1089. .tweets-widget ul li:first-child {
  1090. margin-top: 5px;
  1091. }
  1092.  
  1093. .tweets-widget li.tweets-bird {
  1094. padding-left: 24px;
  1095. background: url(images/tweets.png) left 2px no-repeat;
  1096. }
  1097.  
  1098. .tweets-widget a {}
  1099.  
  1100. .tweets-widget a:hover {}
  1101.  
  1102. a.tweets-widget-time {
  1103. text-decoration: underline;
  1104. }
  1105.  
  1106. a.tweets-widget-time:hover {
  1107. text-decoration: none;
  1108. }
  1109.  
  1110. /* Facebook Widget
  1111. ----------------------------*/
  1112.  
  1113. .facebook-widget {
  1114. list-style-type: none;
  1115. list-style: none;
  1116. margin: 0;
  1117. padding: 0;
  1118. }
  1119.  
  1120. /* =COMMENTS
  1121. -------------------------------------------------------------- */
  1122.  
  1123. #comments {
  1124. margin-bottom: 15px;
  1125. }
  1126.  
  1127. #comments p {
  1128. margin: 5px 0 10px 0;
  1129. }
  1130.  
  1131. h3#comments-title {
  1132. font-weight: bold;
  1133. font-size: 20px;
  1134. padding: 0;
  1135. margin: 0 0 15px 0;
  1136. }
  1137.  
  1138. .commentlist {
  1139. list-style: none;
  1140. margin: 0;
  1141. padding: 0;
  1142. }
  1143.  
  1144. .commentlist li.comment {
  1145. line-height: 24px;
  1146. margin: 0 0 15px 0;
  1147. padding: 0 0 0 0px;
  1148. position: relative;
  1149. }
  1150.  
  1151. .commentlist li:last-child {
  1152. border-bottom:none;
  1153. margin-bottom:0;
  1154. }
  1155.  
  1156. #comments .comment-body ul,
  1157. #comments .comment-body ol {
  1158. margin-bottom: 15px;
  1159. }
  1160.  
  1161. #comments .comment-body blockquote p:last-child {
  1162. margin-bottom: 15px;
  1163. }
  1164.  
  1165. .commentlist .avatar {
  1166. border: 3px solid #ffffff;
  1167. margin-right: 10px;
  1168. width: 40px;
  1169. height: 40px;
  1170. vertical-align: middle;
  1171. margin-bottom: 2px;
  1172. }
  1173.  
  1174. .comment-author {
  1175. padding: 5px;
  1176. display: block;
  1177. background: #F2F2F2;
  1178. border: 1px solid #DFDFDF;
  1179. -moz-border-radius: 4px;
  1180. -khtml-border-radius: 4px;
  1181. -webkit-border-radius: 4px;
  1182. border-radius: 4px;
  1183. }
  1184.  
  1185. .comment-author cite {
  1186. font-style: normal;
  1187. font-weight: bold;
  1188. }
  1189.  
  1190. .comment-author .says {
  1191. font-style: italic;
  1192. }
  1193.  
  1194. .fn, .fn a:link, .fn a:hover, .fn a:visited {
  1195. font-family: Arial, Helvetica, Sans-serif;
  1196. font-size: 16px;
  1197. font-style: normal;
  1198. font-weight: bold;
  1199. text-decoration: none;
  1200. }
  1201.  
  1202. .comment-meta {
  1203. margin: -23px 0 0 65px;
  1204. display: block;
  1205. font-size: 11px;
  1206. padding:0;
  1207. }
  1208.  
  1209. .comment-meta a:link,
  1210. .comment-meta a:visited {
  1211. text-decoration: none;
  1212. }
  1213. .commentlist .bypostauthor {
  1214. }
  1215. .reply {
  1216. text-align: right;
  1217. margin-bottom: 10px;
  1218. }
  1219.  
  1220. .comment-reply-link {
  1221. font-size: 11px;
  1222. font-weight: normal;
  1223. text-decoration: none;
  1224. background: #EDEDED;
  1225. color: #333;
  1226. padding: 2px 8px;
  1227. -moz-border-radius: 3px;
  1228. -khtml-border-radius: 3px;
  1229. -webkit-border-radius: 3px;
  1230. border-radius: 3px;
  1231. border: 1px solid #999999;
  1232. }
  1233.  
  1234. .comment-reply-link:hover {
  1235. background: #F5F5F5;
  1236. color: #333;
  1237. }
  1238.  
  1239.  
  1240. .commentlist .children {
  1241. list-style: none;
  1242. margin: 0;
  1243. }
  1244.  
  1245. /* Children */
  1246.  
  1247. .commentlist .children li {
  1248. border: none;
  1249. margin: 0;
  1250. }
  1251.  
  1252. .nocomments {
  1253. display: none;
  1254. }
  1255.  
  1256. #comments .pingback {
  1257. margin-bottom: 18px;
  1258. padding-bottom: 18px;
  1259. }
  1260.  
  1261. .commentlist li.comment+li.pingback {
  1262. margin-top: -6px;
  1263. }
  1264.  
  1265. #comments .pingback p {
  1266. font-size: 12px;
  1267. line-height: 18px;
  1268. display:block;
  1269. margin: 0;
  1270. }
  1271.  
  1272. #comments .pingback .url {
  1273. font-style: italic;
  1274. font-size: 13px;
  1275. }
  1276.  
  1277. /* Comments form */
  1278.  
  1279. #respond {
  1280. overflow: hidden;
  1281. position: relative;
  1282. margin-bottom: 15px;
  1283. }
  1284.  
  1285. h3#reply-title {
  1286. font-weight: bold;
  1287. font-size: 20px;
  1288. padding: 0;
  1289. margin: 0 0 15px 0;
  1290. }
  1291.  
  1292. #respond .required {
  1293. color:#FF4B33;
  1294. }
  1295.  
  1296. #respond .comment-notes {
  1297. margin-bottom: 1em;
  1298. }
  1299.  
  1300. .form-allowed-tags {
  1301. display: none;
  1302. }
  1303.  
  1304. .children #respond {
  1305. margin: 0 48px 0 0;
  1306. }
  1307.  
  1308. #comments-list #respond {
  1309. margin: 0 0 18px 0;
  1310. }
  1311.  
  1312. #comments-list ul #respond {
  1313. margin: 0;
  1314. }
  1315.  
  1316. #cancel-comment-reply-link {
  1317. font-size: 12px;
  1318. line-height: 18px;
  1319. font-weight: normal;
  1320. }
  1321.  
  1322. #respond .required {
  1323. color:#FF4B33;
  1324. font-weight:bold;
  1325. }
  1326.  
  1327. #respond label {
  1328. font-size: 12px;
  1329. font-weight: bold;
  1330. }
  1331.  
  1332. #respond input {
  1333. margin:10px 0 0 0;
  1334. width:98%;
  1335. }
  1336.  
  1337. #respond textarea {
  1338. width:98%;
  1339. margin:10px 0 0 0;
  1340. }
  1341.  
  1342. #respond .form-allowed-tags {
  1343. font-size: 12px;
  1344. line-height: 18px;
  1345. }
  1346.  
  1347. #respond .form-allowed-tags code {
  1348. font-size: 11px;
  1349. }
  1350.  
  1351. #respond input[type=submit] {
  1352. margin: 0;
  1353. }
  1354.  
  1355. #respond .form-submit {
  1356. margin: 0;
  1357. }
  1358.  
  1359. #respond .form-submit input {
  1360. width: auto;
  1361. font-size: 14px;
  1362. }
  1363. #respond dl {
  1364. margin: 0 0 10px;
  1365. }
  1366.  
  1367. #respond dt {
  1368. display: inline;
  1369. font-weight: normal;
  1370. }
  1371.  
  1372. #respond dd {
  1373. display: inline;
  1374. }
  1375.  
  1376. /* =END
  1377. -------------------------------------------------------------- */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement