rtl.css 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884
  1. /*
  2. Theme Name: TextBook
  3. Adding support for language written in a Right To Left (RTL) direction is easy -
  4. it's just a matter of overwriting all the horizontal positioning attributes
  5. of your CSS stylesheet in a separate stylesheet file named rtl.css.
  6. https://codex.wordpress.org/Right_to_Left_Languagecomponentsupport
  7. */
  8. body {
  9. direction: rtl;
  10. unicode-bidi: embed;
  11. }
  12. .screen-reader-text:focus {
  13. left: inherit;
  14. right: 5px;
  15. }
  16. /*--------------------------------------------------------------
  17. # Alignments
  18. --------------------------------------------------------------*/
  19. .alignleft {
  20. display: inline;
  21. float: right;
  22. margin-left: 1.5em;
  23. margin-right: inherit;
  24. }
  25. .alignright {
  26. display: inline;
  27. float: left;
  28. margin-left: inherit;
  29. margin-right: 1.5em;
  30. }
  31. /*--------------------------------------------------------------
  32. # Typography
  33. --------------------------------------------------------------*/
  34. blockquote {
  35. margin: 0 1.5em 0 0;
  36. }
  37. /*--------------------------------------------------------------
  38. # Forms
  39. --------------------------------------------------------------*/
  40. textarea {
  41. padding-right: 3px;
  42. padding-left: inherit;
  43. }
  44. /*--------------------------------------------------------------
  45. # Buttons
  46. --------------------------------------------------------------*/
  47. /*--------------------------------------------------------------
  48. # Formatting
  49. --------------------------------------------------------------*/
  50. /*--------------------------------------------------------------
  51. # Lists
  52. --------------------------------------------------------------*/
  53. ul, ol {
  54. margin: 0 27px 1.5em 0;
  55. }
  56. li > ul,
  57. li > ol {
  58. margin-left: inherit;
  59. margin-right: 1.5em;
  60. }
  61. /*--------------------------------------------------------------
  62. # Tables
  63. --------------------------------------------------------------*/
  64. table th,
  65. table td {
  66. text-align: right;
  67. }
  68. /*--------------------------------------------------------------
  69. # Navigation
  70. --------------------------------------------------------------*/
  71. /* Small menu. */
  72. .menu-toggle {
  73. float: left;
  74. margin-left: 5px;
  75. margin-right: inherit;
  76. }
  77. .main-navigation {
  78. left: 10px;
  79. right: inherit;
  80. }
  81. .main-navigation ul {
  82. padding-left: inherit;
  83. padding-right: 0;
  84. }
  85. .main-navigation > div > ul {
  86. padding-left: inherit;
  87. padding-right: 0;
  88. }
  89. .main-navigation > div > ul li:before {
  90. left: inherit;
  91. right: 0;
  92. }
  93. .main-navigation > div > ul li:hover > ul,
  94. .main-navigation > div > ul li.focus > ul {
  95. left: inherit;
  96. right: auto;
  97. }
  98. .main-navigation .sub-menu:before,
  99. .main-navigation .children:before {
  100. left: inherit;
  101. right: 0;
  102. }
  103. .main-navigation .sub-menu ul:before,
  104. .main-navigation .children ul:before {
  105. left: inherit;
  106. right: 0;
  107. }
  108. .main-navigation .sub-menu li:before,
  109. .main-navigation .children li:before {
  110. left: inherit;
  111. right: 0;
  112. }
  113. .main-navigation .sub-menu li.menu-item-has-children:hover ul a,
  114. .main-navigation .sub-menu li.page_item_has_children:hover ul a,
  115. .main-navigation .children li.menu-item-has-children:hover ul a,
  116. .main-navigation .children li.page_item_has_children:hover ul a {
  117. padding-left: inherit;
  118. padding-right: 40.5px;
  119. }
  120. .main-navigation .menu-item-has-children > a,
  121. .main-navigation .page_item_has_children > a {
  122. padding: 20.25px 20.25px 20.25px 55px;
  123. }
  124. .main-navigation .dropdown-toggle {
  125. left: -1px;
  126. right: inherit;
  127. }
  128. @media screen and (min-width: 50em) {
  129. .main-navigation {
  130. left: inherit;
  131. }
  132. .main-navigation .menu-item-has-children a,
  133. .main-navigation .page_item_has_children a {
  134. padding: 20px 20px 20px 35px;
  135. }
  136. .main-navigation .sub-menu,
  137. .main-navigation .children {
  138. float: right;
  139. left: inherit;
  140. right: -999em;
  141. }
  142. .main-navigation .sub-menu ul,
  143. .main-navigation .children ul {
  144. left: inherit;
  145. right: -999em;
  146. }
  147. .main-navigation .sub-menu li:hover > ul,
  148. .main-navigation .sub-menu li .focus > ul,
  149. .main-navigation .children li:hover > ul,
  150. .main-navigation .children li .focus > ul {
  151. left: inherit;
  152. right: 100%;
  153. }
  154. .main-navigation .sub-menu li.menu-item-has-children:hover ul a, .main-navigation .sub-menu li.page_item_has_children:hover ul a,
  155. .main-navigation .children li.menu-item-has-children:hover ul a,
  156. .main-navigation .children li.page_item_has_children:hover ul a {
  157. padding-left: inherit;
  158. padding-right: 20.25px;
  159. }
  160. .main-navigation.add-seperators > div > ul > li:before {
  161. left: inherit;
  162. right: 0;
  163. }
  164. .main-navigation .dropdown-toggle {
  165. left: 19px;
  166. right: inherit;
  167. }
  168. }
  169. .footer-navigation > div > ul {
  170. margin: 0 -13.5px 0 0 ;
  171. padding-left: inherit;
  172. padding-right: 0;
  173. }
  174. .posts-navigation .nav-previous:before,
  175. .post-navigation .nav-previous:before,
  176. .comment-navigation .nav-previous:before {
  177. left: inherit;
  178. right: 0;
  179. }
  180. .posts-navigation .nav-next:before,
  181. .post-navigation .nav-next:before,
  182. .comment-navigation .nav-next:before {
  183. left: inherit;
  184. right: 0;
  185. }
  186. .posts-navigation a .meta-nav:before,
  187. .post-navigation a .meta-nav:before,
  188. .comment-navigation a .meta-nav:before {
  189. left: inherit;
  190. right: 0;
  191. }
  192. @media screen and (min-width: 37.5em) {
  193. .posts-navigation .nav-previous:before,
  194. .post-navigation .nav-previous:before,
  195. .comment-navigation .nav-previous:before {
  196. border-left: 1px solid #b23f33;
  197. border-right: none;
  198. right: inherit;
  199. left: 0;
  200. }
  201. .posts-navigation .nav-previous:before,
  202. .post-navigation .nav-previous:before,
  203. .comment-navigation .nav-previous:before {
  204. left: -1px;
  205. right: inherit;
  206. }
  207. .posts-navigation .nav-next:before,
  208. .post-navigation .nav-next:before,
  209. .comment-navigation .nav-next:before {
  210. border-left: none;
  211. border-right: 1px solid #b23f33;
  212. left: inherit;
  213. right: 0;
  214. }
  215. }
  216. /*--------------------------------------------------------------
  217. # Links
  218. --------------------------------------------------------------*/
  219. /*--------------------------------------------------------------
  220. # Layout
  221. --------------------------------------------------------------*/
  222. /*--------------------------------------------------------------
  223. ## Content
  224. --------------------------------------------------------------*/
  225. @media screen and (min-width: 50em) {
  226. .content-area {
  227. float: right;
  228. margin: 0 0 0 -25%;
  229. }
  230. .site-main {
  231. margin: 0 0 0 calc(25% + 27px);
  232. }
  233. }
  234. /*--------------------------------------------------------------
  235. ## Content Widget Area
  236. --------------------------------------------------------------*/
  237. .site-content #secondary .widget:before {
  238. left: inherit;
  239. right: 0;
  240. }
  241. @media screen and (min-width: 50em) {
  242. .site-content #secondary {
  243. float: left;
  244. width: 25%;
  245. }
  246. }
  247. /*--------------------------------------------------------------
  248. ## Responsive Layout Styles
  249. --------------------------------------------------------------*/
  250. /*--------------------------------------------------------------
  251. # Components
  252. --------------------------------------------------------------*/
  253. /*--------------------------------------------------------------
  254. # Header
  255. --------------------------------------------------------------*/
  256. .site-branding {
  257. padding-left: 70px;
  258. padding-right: inherit;
  259. }
  260. /*--------------------------------------------------------------
  261. # Header Search
  262. --------------------------------------------------------------*/
  263. .search-toggle {
  264. text-align: left;
  265. }
  266. .search-box .search-submit {
  267. float: right;
  268. }
  269. .search-box .search-field {
  270. float: left;
  271. }
  272. @media screen and (min-width: 50em) {
  273. .main-navigation > .search-box-wrapper.toggled-on,
  274. .main-navigation .search-box-wrapper {
  275. left: inherit;
  276. right: 27px;
  277. }
  278. }
  279. /*--------------------------------------------------------------
  280. # Header Image
  281. --------------------------------------------------------------*/
  282. @media screen and (min-width: 50em) {
  283. .header-image .site-header:before {
  284. left: inherit;
  285. right: 0;
  286. }
  287. .single.header-image .site-header:before,
  288. .page.header-image .site-header:before,
  289. .archive.header-image .site-header:before,
  290. .search.header-image .site-header:before {
  291. left: inherit;
  292. right: 0;
  293. }
  294. }
  295. /*--------------------------------------------------------------
  296. ## Features
  297. --------------------------------------------------------------*/
  298. .featured-content-inner .hentry:nth-of-type(3n+1):before {
  299. border-left: none;
  300. border-right: 1px solid #b23f33;
  301. left: inherit;
  302. right: 0;
  303. }
  304. .featured-content-inner .hentry:nth-of-type(3n+2):before {
  305. border-left: none;
  306. border-right: 1px solid #259275;
  307. left: inherit;
  308. right: 0;
  309. }
  310. .featured-content-inner .hentry:nth-of-type(3n+3):before {
  311. border-left: none;
  312. border-right: 1px solid #7c6c9E;
  313. left: inherit;
  314. right: 0;
  315. }
  316. .featured-content-inner .hentry .entry-meta .posted-on .entry-date {
  317. text-align: right;
  318. }
  319. .featured-content-inner .hentry .entry-meta .posted-on .day {
  320. padding-left: 10px;
  321. padding-right: inherit;
  322. }
  323. .featured-content-inner .hentry .entry-meta .posted-on .month-year {
  324. text-align: right;
  325. }
  326. @media screen and (min-width: 50em) {
  327. .featured-content-header {
  328. float: right;
  329. }
  330. .featured-page-highlight {
  331. float: left;
  332. clear: both;
  333. padding: 0 27px 0 54px;
  334. }
  335. .featured-page-highlight .hentry {
  336. left: inherit;
  337. right: 0;
  338. }
  339. }
  340. /*--------------------------------------------------------------
  341. ## Featured Content Page Highlight
  342. --------------------------------------------------------------*/
  343. .featured-page-highlight .hentry .entry-meta:before {
  344. left: inherit;
  345. right: 0;
  346. }
  347. @media screen and (min-width: 50em) {
  348. .featured-page-highlight {
  349. float: left;
  350. clear: both;
  351. padding: 0 27px 0 54px;
  352. }
  353. .featured-page-highlight .hentry {
  354. left: inherit;
  355. right: 0;
  356. }
  357. }
  358. /*--------------------------------------------------------------
  359. ## Testimonials
  360. --------------------------------------------------------------*/
  361. .testimonials .hentry:nth-of-type(3n+1) .speech-triangle {
  362. border-left-color: none;
  363. border-right-color: #b23f33;
  364. }
  365. .testimonials .hentry:nth-of-type(3n+2) .speech-triangle {
  366. border-left-color: none;
  367. border-right-color: #259275;
  368. }
  369. .testimonials .hentry:nth-of-type(3n+3) .speech-triangle {
  370. border-left-color: none;
  371. border-right-color: #7c6c9E;
  372. }
  373. .testimonials .entry-meta .posted-on .entry-date {
  374. text-align: right;
  375. }
  376. .testimonials .entry-meta .posted-on .day {
  377. padding-left: 10px;
  378. padding-right: inherit;
  379. }
  380. .testimonials .entry-meta .posted-on .month-year {
  381. text-align: right;
  382. }
  383. .testimonials .entry-content:before, .testimonials .entry-content:after {
  384. left: inherit;
  385. right: calc(40%);
  386. }
  387. .testimonials .entry-content:after {
  388. left: inherit;
  389. right: calc(40% + 1px);
  390. }
  391. /*--------------------------------------------------------------
  392. ## Posts
  393. --------------------------------------------------------------*/
  394. .hentry form > label,
  395. .hentry form > p > label {
  396. float: right;
  397. }
  398. .single .hentry .entry-header:before {
  399. left: inherit;
  400. right: 0;
  401. }
  402. .single .hentry .entry-meta {
  403. margin-left: -1px;
  404. margin-right: inherit;
  405. }
  406. .single .hentry .entry-meta:before {
  407. left: 0;
  408. right: inherit;
  409. }
  410. .single .hentry .posted-on .day {
  411. padding-left: 10px;
  412. padding-right: inherit;
  413. }
  414. .single .hentry .posted-on .month-year {
  415. text-align: right;
  416. }
  417. .single .hentry .posted-on:before {
  418. left: -1px;
  419. right: inherit;
  420. }
  421. .single .hentry .post-thumbnail:before {
  422. left: inherit;
  423. right: 0;
  424. }
  425. .single .hentry .cat-links li {
  426. float: right;
  427. margin: 0 0 5px 5px;
  428. }
  429. .single .hentry .byline .avatar {
  430. margin-left: 5px;
  431. margin-right: inherit;
  432. }
  433. @media screen and (min-width: 37.5em) {
  434. .single .hentry .entry-title:before {
  435. left: inherit;
  436. right: 1px;
  437. }
  438. .single .hentry .entry-title:before:before {
  439. border-left: none;
  440. border-right: 1px solid #b23f33;
  441. left: inherit;
  442. right: 0;
  443. }
  444. .single .hentry .entry-meta {
  445. margin-right: inherit;
  446. margin-left: -1px;
  447. }
  448. .single .hentry .entry-meta:before {
  449. border-left: 1px solid #b23f33;
  450. border-right: inherit;
  451. right: inherit;
  452. left: 0;
  453. }
  454. .single .hentry .entry-meta:before {
  455. left: -1px;
  456. right: inherit;
  457. }
  458. .single .hentry .posted-on:before {
  459. border-left: none;
  460. border-right: inherit;
  461. }
  462. .single .hentry .entry-content {
  463. float: left;
  464. clear: right;
  465. margin: 0 25% 0 0;
  466. }
  467. .single .hentry .entry-footer {
  468. float: right;
  469. margin: 0 0 0 -25%;
  470. width: 25%;
  471. }
  472. .single .hentry .cat-links li {
  473. float: none;
  474. margin: 0;
  475. }
  476. }
  477. /*--------------------------------------------------------------
  478. ## Comments
  479. --------------------------------------------------------------*/
  480. .comments-area > ol .children {
  481. margin-left: inherit;
  482. padding-left: inherit;
  483. margin-right: 10px;
  484. padding-right: 0;
  485. }
  486. .comment-reply-title small {
  487. float: left;
  488. text-align: left;
  489. }
  490. .comment-body .avatar {
  491. left: 27px;
  492. right: inherit;
  493. }
  494. .comment-body .reply {
  495. float: left;
  496. }
  497. .comment-body .comment-likes {
  498. margin-right: inherit;
  499. }
  500. @media screen and (min-width: 50em) {
  501. .comments-area > ol .children {
  502. margin-left: inherit;
  503. margin-right: 54px;
  504. }
  505. .comment-body .avatar {
  506. left: inherit;
  507. right: 54px;
  508. }
  509. .comment-body .comment-content {
  510. margin-left: 81px;
  511. margin-right: inherit;
  512. }
  513. .comment-body .comment-meta {
  514. padding-left: inherit;
  515. padding-right: 71.99982px;
  516. }
  517. #content .comment-body .edit-link {
  518. float: left;
  519. }
  520. }
  521. /*--------------------------------------------------------------
  522. ## Cards
  523. --------------------------------------------------------------*/
  524. .card {
  525. float: right;
  526. margin: 0 0 1.65em 27px;
  527. }
  528. .card .entry-header .entry-meta:before {
  529. left: inherit;
  530. right: 0;
  531. }
  532. .card .entry-content {
  533. left: inherit;
  534. right: 0;
  535. }
  536. .card .entry-content .edit-link {
  537. left: 0;
  538. right: inherit;
  539. }
  540. .card .entry-content .entry-meta:before {
  541. left: inherit;
  542. right: 0;
  543. }
  544. .card.sticky:after {
  545. left: 12px;
  546. right: inherit;
  547. }
  548. @media screen and (min-width: 37.5em) {
  549. .card:nth-of-type(2n) {
  550. margin-left: 0;
  551. margin-right: inherit;
  552. }
  553. }
  554. @media screen and (min-width: 60em) {
  555. .card:nth-of-type(2n) {
  556. margin-left: 27px;
  557. margin-right: inherit;
  558. }
  559. .card:nth-of-type(3n) {
  560. margin-left: 0;
  561. margin-right: inherit;
  562. }
  563. }
  564. /*--------------------------------------------------------------
  565. ## Pages
  566. --------------------------------------------------------------*/
  567. .entry-breadcrumbs:before {
  568. left: inherit;
  569. right: 0;
  570. }
  571. @media screen and (min-width: 37.5em) {
  572. .single .hentry:not(.post):before,
  573. .page .page:before {
  574. left: inherit;
  575. right: 0;
  576. }
  577. }
  578. /*--------------------------------------------------------------
  579. ## Footer Widget Area
  580. --------------------------------------------------------------*/
  581. .footer-widget-area .widget:nth-of-type(4n+2):before {
  582. left: inherit;
  583. right: 0;
  584. }
  585. .footer-widget-area .widget:nth-of-type(4n+3):before {
  586. left: inherit;
  587. right: 0;
  588. }
  589. .footer-widget-area .widget:nth-of-type(4n+4):before {
  590. left: inherit;
  591. right: 0;
  592. }
  593. @media screen and (min-width: 60em) {
  594. .footer-widget-area .widget {
  595. margin-left: 0;
  596. margin-right: 27px;
  597. padding: 0.825em 0 1.65em 27px;
  598. }
  599. .footer-widget-area .widget:nth-of-type(4n+2):before,
  600. .footer-widget-area .widget:nth-of-type(4n+3):before,
  601. .footer-widget-area .widget:nth-of-type(4n+4):before {
  602. border-width: 0 1px 0 0;
  603. left: inherit;
  604. right: -27px;
  605. }
  606. }
  607. /*--------------------------------------------------------------
  608. ## Footer
  609. --------------------------------------------------------------*/
  610. @media screen and (min-width: 37.5em) {
  611. .site-info,
  612. .site-footer .footer-navigation {
  613. clear: right;
  614. float: right;
  615. }
  616. .site-footer .jetpack-social-navigation {
  617. clear: left;
  618. float: left;
  619. }
  620. .site-footer .jetpack-social-navigation ul {
  621. text-align: left;
  622. }
  623. }
  624. /*--------------------------------------------------------------
  625. # Widgets
  626. --------------------------------------------------------------*/
  627. .widget ul ul {
  628. margin-left: inherit;
  629. margin-right: 27px;
  630. padding-left: inherit;
  631. padding-right: 0;
  632. }
  633. .widget_calendar .calendar_wrap {
  634. text-align: right;
  635. }
  636. .widget_calendar .calendar_wrap caption {
  637. text-align: right;
  638. }
  639. .widget_calendar .next {
  640. text-align: left;
  641. }
  642. .widget_image .wp-caption .wp-caption-text {
  643. text-align: right;
  644. }
  645. .widget_rss > ul > li:before {
  646. left: inherit;
  647. right: 0;
  648. }
  649. .widget_rss > ul > li:before {
  650. left: inherit;
  651. right: -10px;
  652. }
  653. .widget_authors .avatar {
  654. margin-left: 10px;
  655. margin-right: inherit;
  656. }
  657. .widget_jetpack_display_posts_widget .jetpack-display-remote-posts p:before {
  658. left: inherit;
  659. right: 0;
  660. }
  661. .widget_jetpack_display_posts_widget .jetpack-display-remote-posts p:before {
  662. left: inherit;
  663. right: -10px;
  664. }
  665. .widget_goodreads > div > div > div:before {
  666. left: inherit;
  667. right: 0;
  668. }
  669. .widget_goodreads > div > div > div div[class^="gr_custom_book_container"] {
  670. float: right;
  671. margin-left: 27px;
  672. margin-right: inherit;
  673. }
  674. .time_machine_widget .time-machine-newer {
  675. float: left;
  676. }
  677. @media screen and (min-width: 50em) {
  678. .widget_rss > ul > li:before {
  679. left: inherit;
  680. right: -15px;
  681. }
  682. }
  683. /*--------------------------------------------------------------
  684. # Media
  685. --------------------------------------------------------------*/
  686. /*--------------------------------------------------------------
  687. ## Galleries
  688. --------------------------------------------------------------*/
  689. /*--------------------------------------------------------------
  690. # JetPack Styles
  691. --------------------------------------------------------------*/
  692. /*--------------------------------------------------------------
  693. # Infinite Scroll
  694. --------------------------------------------------------------*/
  695. /*--------------------------------------------------------------
  696. ## JetPack Post Flair
  697. --------------------------------------------------------------*/
  698. .hentry > .sharedaddy:not(#jp-post-flair) .sd-title:before {
  699. left: inherit;
  700. right: 0;
  701. }
  702. #jp-post-flair h3.sd-title:before,
  703. #jp-post-flair div.sharedaddy h3.sd-title:before,
  704. #jp-post-flair .jp-relatedposts .jp-relatedposts-headline em:before {
  705. left: inherit;
  706. right: 0;
  707. }
  708. @media screen and (min-width: 50em) {
  709. #jp-post-flair > .sd-rating {
  710. float: right;
  711. }
  712. }
  713. /*--------------------------------------------------------------
  714. ## Social Menu
  715. --------------------------------------------------------------*/
  716. /*--------------------------------------------------------------
  717. ## Highlander Comments
  718. --------------------------------------------------------------*/
  719. /*--------------------------------------------------------------
  720. # Plugin Styles
  721. --------------------------------------------------------------*/
  722. /*
  723. * jQuery FlexSlider v2.6.1
  724. * http://www.woothemes.com/flexslider/
  725. *
  726. * Copyright 2012 WooThemes
  727. * Free to use under the GPLv2 and later license.
  728. * http://www.gnu.org/licenses/gpl-2.0.html
  729. *
  730. * Contributing author: Tyler Smith (@mbmufffin)
  731. *
  732. */
  733. /* ====================================================================================================================
  734. * RESETS
  735. * ====================================================================================================================*/
  736. /* ====================================================================================================================
  737. * BASE STYLES
  738. * ====================================================================================================================*/
  739. /* ====================================================================================================================
  740. * DEFAULT THEME
  741. * ====================================================================================================================*/
  742. .carousel li {
  743. margin-right: inherit;
  744. margin-left: 5px;
  745. }
  746. .flexslider {
  747. direction: ltr;
  748. }
  749. /* ====================================================================================================================
  750. * RESPONSIVE
  751. * ====================================================================================================================*/
  752. @media screen and (max-width: 860px) {
  753. .flex-direction-nav .flex-prev {
  754. left: inherit;
  755. right: 10px;
  756. }
  757. .flex-direction-nav .flex-next {
  758. left: 10px;
  759. right: inherit;
  760. }
  761. }