style.css 23 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361
  1. body {
  2. font-size: 16px;
  3. line-height: 27px;
  4. font-family: 'Open Sans', sans-serif;
  5. color: #444;
  6. background-color: #fff;
  7. }
  8. .bodydemo{
  9. background: url("../img/demo.jpg") left center repeat-x;
  10. background-repeat: no-repeat;
  11. background-size: 100%;
  12. height: 100%;
  13. }
  14. a {
  15. color: #5b6268;
  16. }
  17. a:hover,
  18. a:focus {
  19. text-decoration: none;
  20. color: #5b6268;
  21. }
  22. h1 {
  23. font-size: 45px;
  24. line-height: 60px;
  25. font-weight: normal;
  26. font-family: 'PT Serif', serif;
  27. }
  28. h2 {
  29. font-size: 30px;
  30. line-height: 40px;
  31. font-family: 'Open Sans', sans-serif;
  32. }
  33. h3 {
  34. font-size: 21px;
  35. line-height: 30px;
  36. font-weight: normal;
  37. font-family: 'Open Sans', sans-serif;
  38. }
  39. hr {
  40. border-top-color: #ced5db;
  41. }
  42. /* ===============
  43. Font Awesome Icons
  44. ==================*/
  45. .fa {
  46. font-size: 24px;
  47. }
  48. ::selection {
  49. background: #566572;
  50. /* Safari */
  51. color: #feffff;
  52. }
  53. ::-moz-selection {
  54. background: #566572;
  55. /* Firefox */
  56. color: #feffff;
  57. }
  58. .masthead {
  59. padding-top: 55px;
  60. padding-bottom: 55px;
  61. }
  62. .masthead #logo {
  63. float: left;
  64. display: block;
  65. }
  66. .widewrapper {
  67. background-color: #fff;
  68. }
  69. .widewrapper.main {
  70. }
  71. .widewrapper.masthead {
  72. background-color: #fff;
  73. color: #f8f8f9;
  74. border-bottom: #aaa;
  75. }
  76. .widewrapper.subheader {
  77. background-color: #f1f1f1;
  78. color: #444;
  79. font-size: 16px;
  80. min-height: 63px;
  81. border-top: 1px solid #ddd;
  82. border-bottom: 1px solid #ddd;
  83. }
  84. .widewrapper.footer {
  85. background-color: #333;
  86. color: #eee;
  87. font-size: 14px;
  88. }
  89. .widewrapper.footer a {
  90. color: #7b8690;
  91. }
  92. .widewrapper.footer h1,
  93. .widewrapper.footer h2,
  94. .widewrapper.footer h3,
  95. .widewrapper.footer h4,
  96. .widewrapper.footer h5 {
  97. color: #e6e6e6;
  98. }
  99. .widewrapper.copyright {
  100. color: #7b8690;
  101. padding-top: 15px;
  102. padding-bottom: 15px;
  103. text-align: center;
  104. background-color: #232323;
  105. }
  106. .widewrapper.copyright a {
  107. }
  108. .copyrights{
  109. text-indent:-9999px;
  110. height:0;
  111. line-height:0;
  112. font-size:0;
  113. overflow:hidden;
  114. }
  115. /*==============
  116. Styles for the navigation, both mobile and desktop
  117. ================ */
  118. .clean-nav .nav-pills {
  119. margin-top: 10px;
  120. margin-bottom: 0;
  121. font-size: 16px;
  122. }
  123. .clean-nav .nav-pills > li {
  124. margin-left: 10px;
  125. }
  126. .clean-nav .nav-pills > li > a {
  127. color: #444;
  128. padding: 11px 0 11px 20px;
  129. line-height: 14px;
  130. }
  131. .clean-nav .nav-pills > li > a:hover,
  132. .clean-nav .nav-pills > li > a:focus {
  133. color: #222;
  134. }
  135. .clean-nav .nav-pills > li.dropdown.open.active > a:hover,
  136. .clean-nav .nav-pills > li.dropdown.open.active > a:focus {
  137. color: #222;
  138. }
  139. .clean-nav .nav-pills .open .dropdown-toggle {
  140. }
  141. .clean-nav .nav-pills > .active > a {
  142. }
  143. .clean-nav .nav-pills > .active > a:hover,
  144. .clean-nav .nav-pills > .active > a:focus {
  145. }
  146. .clean-nav .nav-pills .dropdown-menu {
  147. font-size: 16px;
  148. border-radius: 6px;
  149. }
  150. .clean-nav .caret {
  151. border-color: #f8f8f9 transparent transparent transparent !important;
  152. display: none;
  153. }
  154. .clean-nav .dropdown .caret {
  155. margin-left: 7px;
  156. }
  157. .clean-nav .dropdown-menu {
  158. background-color: #49545d;
  159. border-color: transparent;
  160. /*IE 8 Legacy */
  161. border: 1px solid rgba(0, 0, 0, 0.2);
  162. -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  163. -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  164. box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  165. margin: 2px 0 0;
  166. min-width: 160px;
  167. padding: 5px 0;
  168. }
  169. .clean-nav .dropdown-menu > li > a {
  170. color: #f8f8f9;
  171. line-height: 30px;
  172. white-space: nowrap;
  173. }
  174. .clean-nav .dropdown-menu > li > a:hover,
  175. .clean-nav .dropdown-menu > li > a:focus {
  176. background-color: rgba(255, 255, 255, 0.15);
  177. background-image: none;
  178. color: #f8f8f9;
  179. filter: none;
  180. }
  181. .clean-nav .navbar-collapse {
  182. box-shadow: none;
  183. }
  184. .clean-nav .navbar-nav > li > .dropdown-menu {
  185. margin-top: 2px;
  186. }
  187. /* ===========
  188. The button that expands the navigation in mobile-mode
  189. ============= */
  190. #mobile-nav-toggle {
  191. display: none;
  192. margin-top: 10px;
  193. }
  194. @media (max-width: 767px) {
  195. #mobile-nav-toggle {
  196. display: block;
  197. }
  198. }
  199. #mobile-nav-toggle a:hover,
  200. #mobile-nav-toggle a:focus {
  201. text-decoration: none;
  202. }
  203. #mobile-nav-toggle .fa {
  204. color: #f8f8f9;
  205. }
  206. /* ==========
  207. Mobile version of the navigation
  208. =============*/
  209. @media (max-width: 767px) {
  210. .masthead {
  211. padding-bottom: 0px;
  212. }
  213. .clean-nav {
  214. box-shadow: none;
  215. float: left !important;
  216. width: 100%;
  217. margin-top: 30px;
  218. margin-bottom: 20px;
  219. -webkit-border-radius: 6px;
  220. -moz-border-radius: 6px;
  221. border-radius: 6px;
  222. }
  223. .clean-nav .navbar-collapse {
  224. max-height: none;
  225. }
  226. .clean-nav .nav-pills > li {
  227. margin-left: 0;
  228. float: none;
  229. }
  230. .clean-nav .nav-pills > li > a {
  231. margin-left: 40px;
  232. margin-right: 40px;
  233. }
  234. .clean-nav .nav-pills > li a:hover {
  235. background-color: #333 !important;
  236. }
  237. .clean-nav .nav-pills > li a {
  238. font-weight: normal;
  239. font-size: 20px;
  240. line-height: 30px;
  241. padding-left: 10px;
  242. padding-right: 10px;
  243. -webkit-border-radius: 0px;
  244. -moz-border-radius: 0px;
  245. border-radius: 0px;
  246. color: #444;
  247. }
  248. .clean-nav .nav-pills > li:first-child > a {
  249. border-top: none;
  250. }
  251. .clean-nav .nav-pills > li > a:hover,
  252. .clean-nav .nav-pills > li > a:focus {
  253. background: transparent;
  254. }
  255. .clean-nav .nav-pills > li.dropdown.open.active > a:hover,
  256. .clean-nav .nav-pills > li.dropdown.open.active > a:focus {
  257. background: transparent;
  258. }
  259. .clean-nav .nav-pills .active > a,
  260. .clean-nav .nav-pills .active > a:hover,
  261. .clean-nav .nav-pills .active > a:focus {
  262. background: transparent;
  263. }
  264. .clean-nav .nav-pills .open .dropdown-toggle {
  265. background-color: transparent;
  266. border-color: #3e4953;
  267. padding-bottom: 7px;
  268. }
  269. .clean-nav .nav-pills .dropdown-toggle .caret {
  270. float: right;
  271. margin-top: 14px;
  272. }
  273. .clean-nav .nav-pills .dropdown-menu {
  274. background-color: #49545d;
  275. }
  276. .clean-nav .nav-pills .dropdown.open {
  277. background-color: #49545d;
  278. }
  279. .clean-nav .caret {
  280. border-color: #f8f8f9 transparent transparent transparent !important;
  281. border-width: 6px;
  282. display: block;
  283. }
  284. .clean-nav .dropdown-menu {
  285. margin-top: 0;
  286. padding-top: 0;
  287. -webkit-box-shadow: none;
  288. -moz-box-shadow: none;
  289. box-shadow: none;
  290. border: none;
  291. }
  292. .clean-nav .dropdown-menu > li {
  293. margin-left: 35px;
  294. }
  295. .clean-nav .dropdown-menu > li > a {
  296. padding-top: 9px;
  297. padding-bottom: 9px !important;
  298. font-size: 18px;
  299. line-height: 27px;
  300. }
  301. .clean-nav .dropdown-menu > li > a:hover,
  302. .clean-nav .dropdown-menu > li > a:focus {
  303. background-color: transparent;
  304. }
  305. .clean-nav .navbar-nav .open .dropdown-menu > li > a {
  306. padding-top: 9px;
  307. padding-bottom: 9px;
  308. line-height: 27px;
  309. }
  310. }
  311. /* ===========
  312. Elements that are used througout clean, such as Searchboxes, Blog elements, Widgets, etc. etc.
  313. ==============*/
  314. .clean-breadcrumb {
  315. color: #7b8690;
  316. float: left;
  317. margin-top: 19px;
  318. }
  319. .clean-breadcrumb a {
  320. color: #7b8690;
  321. }
  322. .clean-breadcrumb a:hover,
  323. .clean-breadcrumb a:focus {
  324. text-decoration: none;
  325. }
  326. .clean-breadcrumb .separator {
  327. margin: 0 10px 0 10px;
  328. }
  329. /* The searchbox in the subheader on top of the site */
  330. .clean-searchbox {
  331. float: right;
  332. display: inline-block;
  333. min-width: 210px;
  334. margin-bottom: 16px;
  335. margin-top: 16px;
  336. }
  337. .clean-searchbox form {
  338. margin: 0;
  339. }
  340. .clean-searchbox .fa {
  341. color: #7b8690;
  342. font-size: 19px;
  343. }
  344. .clean-searchbox .searchbutton,
  345. .clean-searchbox .searchfield {
  346. color: #7b8690;
  347. }
  348. .clean-searchbox .searchbutton {
  349. display: inline-block;
  350. border: none;
  351. line-height: 20px;
  352. height: 31px;
  353. vertical-align: middle;
  354. }
  355. .clean-searchbox .searchbutton a:hover,
  356. .clean-searchbox .searchbutton a:focus {
  357. text-decoration: none;
  358. }
  359. .clean-searchbox .searchfield {
  360. border: none;
  361. height: 22px;
  362. line-height: 22px;
  363. -webkit-box-sizing: content-box;
  364. -moz-box-sizing: content-box;
  365. box-sizing: content-box;
  366. padding: 5px 6px 4px 6px;
  367. vertical-align: middle;
  368. display: inline-block;
  369. margin-bottom: 0;
  370. width: 160px;
  371. font-size: 16px;
  372. margin-left: -4px;
  373. outline: none;
  374. }
  375. .clean-searchbox .searchfield::-webkit-input-placeholder {
  376. color: #7b8690;
  377. }
  378. .clean-searchbox .searchfield:-moz-placeholder {
  379. color: #7b8690;
  380. }
  381. .clean-searchbox .searchfield::-moz-placeholder {
  382. color: #7b8690;
  383. }
  384. .clean-searchbox .searchfield:-ms-input-placeholder {
  385. color: #7b8690;
  386. }
  387. .clean-searchbox .searchfield:focus {
  388. -webkit-box-shadow: none;
  389. -moz-box-shadow: none;
  390. box-shadow: none;
  391. }
  392. /* ==============
  393. The list with special bullet points, used both on blog widgets as well as in the footer (both styled here)
  394. =================*/
  395. .clean-list {
  396. list-style: none;
  397. }
  398. .clean-list li {
  399. line-height: 23px;
  400. margin-bottom: 14px;
  401. }
  402. .clean-list li a:hover,
  403. .clean-list li a:focus {
  404. color: #222;
  405. }
  406. .clean-list li:before {
  407. content: "";
  408. background-color: #444;
  409. border-style: solid;
  410. border-width: 4px 4px;
  411. display: block;
  412. width: 8px;
  413. left: -20px;
  414. top: 15px;
  415. position: relative;
  416. }
  417. .footer .clean-list {
  418. margin-top: -6px;
  419. padding-left: 23px;
  420. }
  421. .footer .clean-list li {
  422. margin-bottom: 5px;
  423. }
  424. .footer .clean-list li a {
  425. color: #aaa;
  426. padding-bottom: 5px;
  427. }
  428. .footer .clean-list li a:hover {
  429. color: #ffffff;
  430. }
  431. .footer .clean-list li:before {
  432. left: -21px;
  433. }
  434. /* ===========
  435. Footer widgets
  436. ============== */
  437. .footer-widget {
  438. margin-top: 25px;
  439. margin-bottom: 50px;
  440. line-height: 23px;
  441. }
  442. .footer-widget h3 {
  443. margin-bottom: 20px;
  444. }
  445. .footer-widget h3 .fa {
  446. font-size: 21px;
  447. margin-right: 11px;
  448. }
  449. .footer-widget .stats {
  450. margin-top: 23px;
  451. }
  452. .footer-widget .stats .line {
  453. font-size: 18px;
  454. margin-top: 10px;
  455. }
  456. .footer-widget .stats .line .counter {
  457. font-weight: 600;
  458. float: left;
  459. display: block;
  460. }
  461. .footer-widget .stats .line .caption {
  462. color: #7b8690;
  463. margin-left: 56px;
  464. display: block;
  465. }
  466. .footer-widget .email {
  467. display: block;
  468. margin-top: 10px;
  469. }
  470. .footer-widget-icon i {
  471. font-size: 14px;
  472. border: 1px solid #aaa;
  473. margin-right: 8px;
  474. color: #aaa;
  475. padding: 2px;
  476. }
  477. .footer-widget-icon i:hover {
  478. border-color: #eee;
  479. color: #eee;
  480. }
  481. /* ============
  482. Blog styles
  483. =============== */
  484. .blog-main,
  485. .blog-aside {
  486. position: relative;
  487. }
  488. .blog-main:before,
  489. .blog-aside:before {
  490. height: 100%;
  491. content: "";
  492. position: absolute;
  493. top: 0;
  494. width: 1px;
  495. }
  496. @media (max-width: 767px) {
  497. .blog-main:before,
  498. .blog-aside:before {
  499. display: none;
  500. }
  501. }
  502. .blog-main {
  503. padding-top: 36px;
  504. padding-bottom: 20px;
  505. }
  506. .blog-main:before {
  507. right: -16px;
  508. }
  509. @media (min-width: 768px) and (max-width: 979px) {
  510. .blog-main:before {
  511. display: none;
  512. }
  513. }
  514. .blog-aside {
  515. padding-top: 36px;
  516. }
  517. @media (max-width: 767px) {
  518. .blog-aside {
  519. padding-top: 50px;
  520. }
  521. }
  522. .blog-aside:before {
  523. left: 15px;
  524. }
  525. @media (min-width: 768px) and (max-width: 979px) {
  526. .blog-aside:before {
  527. display: none;
  528. }
  529. }
  530. /* Blog aside widgets */
  531. .aside-widget {
  532. margin-bottom: 40px;
  533. border: 1px solid #ddd;
  534. }
  535. .aside-widget header {
  536. background-color: #f1f1f1;
  537. border-bottom: 1px solid #ddd;
  538. }
  539. .aside-widget header h3 {
  540. font-size: 24px;
  541. padding: 10px 20px 3px 20px;
  542. margin-top: 0;
  543. color: #48535f;
  544. }
  545. .aside-widget .body {
  546. margin: 10px 0;
  547. padding: 5px;
  548. }
  549. .aside-widget a {
  550. color: #5b6268;
  551. }
  552. /* =============
  553. The tags widget
  554. ================ */
  555. .tags {
  556. list-style: none;
  557. margin: 0;
  558. padding-left: 0;
  559. }
  560. .tags li {
  561. float: left;
  562. }
  563. .tags li a {
  564. padding: 3px 15px;
  565. display: inline-block;
  566. margin: 5px;
  567. border: 1px solid rgb(221, 221, 221);
  568. }
  569. .tags li a:focus,
  570. .tags li a:hover {
  571. border-color: #222;
  572. }
  573. /* ============
  574. The blog main page boxes
  575. =============== */
  576. .blog-teaser {
  577. background-color: #fff;
  578. border: 1px solid #ddd;
  579. margin-bottom: 40px;
  580. }
  581. @media (min-width: 768px) and (max-width: 979px) {
  582. .blog-teaser {
  583. display: block;
  584. float: none;
  585. width: 95%;
  586. }
  587. }
  588. .blog-teaser header {
  589. text-align: center;
  590. }
  591. .blog-teaser header img {
  592. margin-bottom: 20px;
  593. width: 100%;
  594. opacity: 0.8;
  595. }
  596. .blog-teaser header h3 {
  597. color: #454a4e;
  598. margin-top: 0;
  599. font-size: 28px;
  600. margin-bottom: 10px;
  601. }
  602. .blog-teaser header h3 a,
  603. .blog-teaser header h3 a:focus,
  604. .blog-teaser header h3 a:hover {
  605. color: #454a4e;
  606. }
  607. .blog-teaser header .meta {
  608. color: #5a6065;
  609. }
  610. .blog-teaser header hr {
  611. border-top-color: #ced5db;
  612. border-bottom: none;
  613. }
  614. .blog-teaser .body {
  615. padding-right: 25px;
  616. padding-left: 25px;
  617. margin-bottom: 10px;
  618. color: #444;
  619. }
  620. .blog-teaser .btn {
  621. float: right;
  622. margin-right: 25px;
  623. margin-bottom: 18px;
  624. }
  625. /* ==============
  626. Blog main page paging
  627. ================= */
  628. .paging {
  629. margin-bottom: 20px;
  630. text-align: right;
  631. }
  632. .paging a:hover,
  633. .paging a:focus {
  634. color: #222;
  635. }
  636. .paging i {
  637. font-size: 16px;
  638. }
  639. .paging a,
  640. .paging span {
  641. margin-left: 10px;
  642. }
  643. .paging .newer i {
  644. margin-right: 5px;
  645. }
  646. .paging .older i {
  647. margin-left: 5px;
  648. }
  649. /* ... aand the main blog article */
  650. .blog-post {
  651. }
  652. .blog-post header h1 {
  653. font-family: 'PT Serif', serif;
  654. margin-bottom: 22px;
  655. }
  656. .blog-post header .lead-image {
  657. position: relative;
  658. }
  659. .blog-post header .lead-image .meta {
  660. padding-left: 30px;
  661. padding-bottom: 10px;
  662. position: absolute;
  663. bottom: 15px;
  664. background-color: rgba(85, 167, 115, 0.85);
  665. color: #ccecd7;
  666. }
  667. .blog-post header .lead-image .meta a {
  668. color: #ccecd7;
  669. }
  670. @media (max-width: 979px) {
  671. .blog-post header .lead-image .meta {
  672. position: relative;
  673. bottom: 0;
  674. }
  675. }
  676. .blog-post header .lead-image .meta .author,
  677. .blog-post header .lead-image .meta .date,
  678. .blog-post header .lead-image .meta .comments {
  679. float: left;
  680. margin: 10px 55px 0 0;
  681. }
  682. .blog-post header .lead-image .meta .author .data,
  683. .blog-post header .lead-image .meta .date .data,
  684. .blog-post header .lead-image .meta .comments .data {
  685. line-height: 30px;
  686. }
  687. @media (min-width: 980px) and (max-width: 1199px) {
  688. .blog-post header .lead-image .meta .author,
  689. .blog-post header .lead-image .meta .date,
  690. .blog-post header .lead-image .meta .comments {
  691. margin-right: 20px;
  692. }
  693. }
  694. .blog-post header .lead-image .meta .author i,
  695. .blog-post header .lead-image .meta .date i,
  696. .blog-post header .lead-image .meta .comments i {
  697. font-size: 30px;
  698. float: left;
  699. margin-right: 10px;
  700. }
  701. .blog-post .body {
  702. margin-top: 20px;
  703. }
  704. @media (min-width: 1200px) {
  705. .blog-post .body {
  706. padding-right: 30px;
  707. }
  708. }
  709. .blog-post .body p {
  710. margin-bottom: 20px;
  711. }
  712. /* ================
  713. The round social icons including the animations
  714. ==================*/
  715. .social-icons {
  716. text-align: center;
  717. }
  718. .social-icon {
  719. position: relative;
  720. margin-bottom: 90px;
  721. display: inline-block;
  722. width: 135px;
  723. height: 135px;
  724. margin-left: 70px;
  725. border-radius: 200px;
  726. }
  727. .social-icons i {
  728. border: 1px solid #ddd;
  729. padding: 10px;
  730. margin: 3px 3px;
  731. }
  732. .social-icons i:hover {
  733. color: #444;
  734. border-color: #444;
  735. }
  736. @media (min-width: 980px) and (max-width: 1199px) {
  737. .span6 .social-icon {
  738. margin-left: 15px;
  739. }
  740. }
  741. @media (min-width: 768px) and (max-width: 979px) {
  742. .social-icon {
  743. margin-left: 40px;
  744. width: 122px;
  745. height: 122px;
  746. }
  747. .span6 .social-icon {
  748. margin-left: -8px;
  749. }
  750. .social-icon .inner-circle {
  751. position: absolute;
  752. top: 11px;
  753. left: 11px;
  754. display: block;
  755. height: 100px;
  756. width: 100px;
  757. }
  758. .social-icon:hover .inner-circle {
  759. width: 122px;
  760. height: 122px;
  761. }
  762. .social-icon i {
  763. font-size: 50px;
  764. top: 36px;
  765. left: 37px;
  766. }
  767. .social-icon i.fa-facebook {
  768. left: 50px;
  769. }
  770. }
  771. @media (max-width: 767px) {
  772. .social-icon {
  773. margin-left: 10px;
  774. width: 81px;
  775. height: 81px;
  776. margin-bottom: 40px;
  777. }
  778. .social-icon .inner-circle {
  779. position: absolute;
  780. top: 8px;
  781. left: 8px;
  782. display: block;
  783. height: 65px;
  784. width: 65px;
  785. }
  786. .social-icon:hover .inner-circle {
  787. height: 65px;
  788. width: 65px;
  789. top: 8px;
  790. left: 8px;
  791. }
  792. .social-icon i {
  793. font-size: 35px;
  794. top: 25px;
  795. left: 25px;
  796. }
  797. .social-icon i.fa-facebook {
  798. left: 32px;
  799. }
  800. .social-icon i.fa-github-alt {
  801. top: 22px;
  802. }
  803. }
  804. .social-icon.color-one {
  805. background-color: #7dbd95;
  806. }
  807. .social-icon.color-one .inner-circle {
  808. background-color: #444;
  809. }
  810. .social-icon.color-two {
  811. background-color: #bb9ce2;
  812. }
  813. .social-icon.color-two .inner-circle {
  814. background-color: #74549f;
  815. }
  816. .social-icon.color-three {
  817. background-color: #64c4ee;
  818. }
  819. .social-icon.color-three .inner-circle {
  820. background-color: #3f8ebd;
  821. }
  822. /* ===========
  823. Comments on blog detail page
  824. ============== */
  825. aside.comments,
  826. aside.create-comment {
  827. margin-bottom: 100px;
  828. }
  829. aside.comments hr,
  830. aside.create-comment hr {
  831. margin-left: auto;
  832. margin-right: auto;
  833. border-top-color: #ddd;
  834. margin-bottom: 30px;
  835. }
  836. @media (min-width: 768px) and (max-width: 979px) {
  837. aside.comments hr,
  838. aside.create-comment hr {
  839. width: 415px;
  840. }
  841. }
  842. @media (max-width: 767px) {
  843. aside.comments hr,
  844. aside.create-comment hr {
  845. width: 100%;
  846. }
  847. }
  848. aside.comments h2,
  849. aside.create-comment h2 {
  850. text-align: center;
  851. font-weight: normal;
  852. margin-bottom: 40px;
  853. }
  854. aside.comments h2 i,
  855. aside.create-comment h2 i {
  856. font-size: 36px;
  857. }
  858. aside.comments .comment {
  859. margin: 30px 0 0 0;
  860. }
  861. aside.comments .comment.reply {
  862. margin-left: 100px;
  863. }
  864. aside.comments .comment header img {
  865. float: left;
  866. border-radius: 100px;
  867. width: 80px;
  868. }
  869. aside.comments .comment header .meta {
  870. margin-left: 100px;
  871. font-size: 14px;
  872. }
  873. aside.comments .comment header .meta h3 {
  874. margin: 10px 0 0 0;
  875. line-height: 27px;
  876. }
  877. aside.comments .comment header .meta h3 a {
  878. color: #5b6268;
  879. }
  880. aside.comments .comment header .meta a {
  881. color: #444;
  882. }
  883. aside.comments .comment .body {
  884. margin-top: 10px;
  885. margin-left: 100px;
  886. border: 1px solid #ddd;
  887. padding: 20px;
  888. }
  889. /* ===========
  890. Add commment form
  891. ============== */
  892. .create-comment input,
  893. .contact-form input,
  894. .create-comment textarea,
  895. .contact-form textarea {
  896. margin-top: 15px;
  897. border-radius: 0px !important;
  898. }
  899. .create-comment .btn,
  900. .contact-form .btn {
  901. margin: 15px 0;
  902. width: 100%;
  903. }
  904. .content,
  905. .about {
  906. padding-top: 36px;
  907. padding-bottom: 80px;
  908. }
  909. /* ============
  910. About me page
  911. =============== */
  912. .about hr {
  913. margin-top: 75px;
  914. }
  915. .about-portrait {
  916. float: right;
  917. margin-top: 20px;
  918. margin-left: 70px;
  919. -webkit-border-radius: 180px;
  920. -moz-border-radius: 180px;
  921. border-radius: 180px;
  922. }
  923. @media (max-width: 767px) {
  924. .about-portrait {
  925. float: none;
  926. margin: 40px auto;
  927. }
  928. }
  929. .about-button {
  930. margin-top: 30px;
  931. }
  932. /* ===============
  933. The various styles that are used in the about me text chunk
  934. =================
  935. */
  936. .about-bold {
  937. font-weight: bold;
  938. }
  939. .about-italic {
  940. font-style: italic;
  941. }
  942. .about-large,
  943. .about-medium,
  944. .about-small {
  945. font-family: 'PT Serif', serif;
  946. line-height: 60px;
  947. }
  948. @media (max-width: 767px) {
  949. .about-large,
  950. .about-medium,
  951. .about-small {
  952. display: block;
  953. }
  954. }
  955. .about-large {
  956. font-size: 40px;
  957. }
  958. .about-medium {
  959. font-size: 36px;
  960. }
  961. .about-small {
  962. font-size: 30px;
  963. }
  964. /* ================
  965. The centered blocks under about me, used for "Social" and "Contact"
  966. ===================*/
  967. .clean-superblock {
  968. margin-bottom: 80px;
  969. }
  970. .clean-superblock h2 {
  971. font-size: 40px;
  972. text-align: center;
  973. margin: 70px 20px 35px;
  974. }
  975. /* The image credits page */
  976. @media (max-width: 767px) {
  977. .credits {
  978. text-align: center;
  979. }
  980. .credits img {
  981. margin-left: auto;
  982. margin-right: auto;
  983. }
  984. }
  985. .credits .image {
  986. margin-top: 60px;
  987. }
  988. .credits .details {
  989. margin-top: 60px;
  990. margin-bottom: 75px;
  991. }
  992. @media (min-width: 768px) and (max-width: 979px) {
  993. .credits .details {
  994. margin-top: 45px;
  995. }
  996. }
  997. @media (max-width: 767px) {
  998. .credits .details {
  999. margin-top: 10px;
  1000. }
  1001. }
  1002. .credits img {
  1003. -webkit-border-radius: 200px;
  1004. -moz-border-radius: 200px;
  1005. border-radius: 200px;
  1006. }
  1007. .credits .bold {
  1008. font-weight: bold;
  1009. }
  1010. .meta {
  1011. margin-bottom: 30px;
  1012. }
  1013. .meta i {
  1014. margin-left: 10px;
  1015. margin-right: 5px;
  1016. font-size: 18px;
  1017. }
  1018. /* ===============
  1019. Form styles
  1020. ================== */
  1021. .form-control:focus {
  1022. border-color: #444;
  1023. box-shadow: none !important;
  1024. }
  1025. .form-control::-webkit-input-placeholder {
  1026. color: #a5b1bc;
  1027. }
  1028. .form-control:-moz-placeholder {
  1029. color: #a5b1bc;
  1030. }
  1031. .form-control::-moz-placeholder {
  1032. color: #a5b1bc;
  1033. }
  1034. .form-control:-ms-input-placeholder {
  1035. color: #a5b1bc;
  1036. }
  1037. /* ============
  1038. Buttons used in clean
  1039. =============== */
  1040. .btn-clean-one {
  1041. color: #444;
  1042. border: 1px solid #ddd;
  1043. }
  1044. .btn-clean-one:hover,
  1045. .btn-clean-one:focus,
  1046. .btn-clean-one:active,
  1047. .btn-clean-one.active,
  1048. .open .dropdown-toggle.btn-clean-one {
  1049. color: #000;
  1050. border-color: #222;
  1051. background-color: #fff;
  1052. }
  1053. .btn-clean-one:active,
  1054. .btn-clean-one.active,
  1055. .open .dropdown-toggle.btn-clean-one {
  1056. background-image: none;
  1057. }
  1058. .btn-clean-one.disabled,
  1059. .btn-clean-one[disabled],
  1060. fieldset[disabled] .btn-clean-one,
  1061. .btn-clean-one.disabled:hover,
  1062. .btn-clean-one[disabled]:hover,
  1063. fieldset[disabled] .btn-clean-one:hover,
  1064. .btn-clean-one.disabled:focus,
  1065. .btn-clean-one[disabled]:focus,
  1066. fieldset[disabled] .btn-clean-one:focus,
  1067. .btn-clean-one.disabled:active,
  1068. .btn-clean-one[disabled]:active,
  1069. fieldset[disabled] .btn-clean-one:active,
  1070. .btn-clean-one.disabled.active,
  1071. .btn-clean-one[disabled].active,
  1072. fieldset[disabled] .btn-clean-one.active {
  1073. }
  1074. .btn-clean-one:hover,
  1075. .btn-clean-one:focus {
  1076. }
  1077. .btn-clean-one .caret {
  1078. border-top-color: #ffffff;
  1079. }
  1080. .btn-clean-two {
  1081. color: #ffffff;
  1082. background-color: #485561;
  1083. border-color: #3c4852;
  1084. background-image: -webkit-gradient(linear, left 0%, left 100%, from(#485561), to(#2e363e));
  1085. background-image: -webkit-linear-gradient(top, #485561, 0%, #2e363e, 100%);
  1086. background-image: -moz-linear-gradient(top, #485561 0%, #2e363e 100%);
  1087. background-image: linear-gradient(to bottom, #485561 0%, #2e363e 100%);
  1088. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff485561', endColorstr='#ff2e363e', GradientType=0);
  1089. background-repeat: repeat-x;
  1090. border-color: #2a3138;
  1091. }
  1092. .btn-clean-two:hover,
  1093. .btn-clean-two:focus,
  1094. .btn-clean-two:active,
  1095. .btn-clean-two.active,
  1096. .open .dropdown-toggle.btn-clean-two {
  1097. color: #ffffff;
  1098. background-color: #37404a;
  1099. border-color: #22292f;
  1100. }
  1101. .btn-clean-two:active,
  1102. .btn-clean-two.active,
  1103. .open .dropdown-toggle.btn-clean-two {
  1104. background-image: none;
  1105. }
  1106. .btn-clean-two.disabled,
  1107. .btn-clean-two[disabled],
  1108. fieldset[disabled] .btn-clean-two,
  1109. .btn-clean-two.disabled:hover,
  1110. .btn-clean-two[disabled]:hover,
  1111. fieldset[disabled] .btn-clean-two:hover,
  1112. .btn-clean-two.disabled:focus,
  1113. .btn-clean-two[disabled]:focus,
  1114. fieldset[disabled] .btn-clean-two:focus,
  1115. .btn-clean-two.disabled:active,
  1116. .btn-clean-two[disabled]:active,
  1117. fieldset[disabled] .btn-clean-two:active,
  1118. .btn-clean-two.disabled.active,
  1119. .btn-clean-two[disabled].active,
  1120. fieldset[disabled] .btn-clean-two.active {
  1121. background-color: #485561;
  1122. border-color: #3c4852;
  1123. }
  1124. .btn-clean-two:hover,
  1125. .btn-clean-two:focus {
  1126. background-color: #2e363e;
  1127. background-position: 0 -15px;
  1128. }
  1129. .btn-clean-two:active,
  1130. .btn-clean-two.active {
  1131. background-color: #2e363e;
  1132. border-color: #2a3138;
  1133. }
  1134. .btn-clean-two .caret {
  1135. border-top-color: #ffffff;
  1136. }
  1137. .btn-xlarge {
  1138. padding: 10px 20px;
  1139. font-size: 20px;
  1140. line-height: normal;
  1141. border-radius: 0px;
  1142. }