您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031
  1. /**
  2. Copyright distrib (2018)
  3. contact@opendistrib.net
  4. Ce logiciel est un programme informatique servant à aider les producteurs
  5. à distribuer leur production en circuits courts.
  6. Ce logiciel est régi par la licence CeCILL soumise au droit français et
  7. respectant les principes de diffusion des logiciels libres. Vous pouvez
  8. utiliser, modifier et/ou redistribuer ce programme sous les conditions
  9. de la licence CeCILL telle que diffusée par le CEA, le CNRS et l'INRIA
  10. sur le site "http://www.cecill.info".
  11. En contrepartie de l'accessibilité au code source et des droits de copie,
  12. de modification et de redistribution accordés par cette licence, il n'est
  13. offert aux utilisateurs qu'une garantie limitée. Pour les mêmes raisons,
  14. seule une responsabilité restreinte pèse sur l'auteur du programme, le
  15. titulaire des droits patrimoniaux et les concédants successifs.
  16. A cet égard l'attention de l'utilisateur est attirée sur les risques
  17. associés au chargement, à l'utilisation, à la modification et/ou au
  18. développement et à la reproduction du logiciel par l'utilisateur étant
  19. donné sa spécificité de logiciel libre, qui peut le rendre complexe à
  20. manipuler et qui le réserve donc à des développeurs et des professionnels
  21. avertis possédant des connaissances informatiques approfondies. Les
  22. utilisateurs sont donc invités à charger et tester l'adéquation du
  23. logiciel à leurs besoins dans des conditions permettant d'assurer la
  24. sécurité de leurs systèmes et ou de leurs données et, plus généralement,
  25. à l'utiliser et l'exploiter dans les mêmes conditions de sécurité.
  26. Le fait que vous puissiez accéder à cet en-tête signifie que vous avez
  27. pris connaissance de la licence CeCILL, et que vous en avez accepté les
  28. termes.
  29. */
  30. //@import "compass/reset";
  31. @import "compass" ;
  32. $dir-img: '../img/' ;
  33. $dir-fonts: '../fonts/' ;
  34. $jaune: #fdd44b ;
  35. $orange: darken(#FDB64B,20%) ;
  36. $gris1: #e0e0e0 ;
  37. $gris2: #e0e0e0 ;
  38. $courant : #323232 ;
  39. $color2: lighten($jaune,30%) ;
  40. $color2: #fff2c7 ;
  41. $color2: #fff6d5 ;
  42. $color1: #BB8757 ;
  43. $color2: #F8F1DD ;
  44. $color1: #FF7F00 ;
  45. $color2: white ;
  46. @import "_fonts.scss" ;
  47. html {
  48. height: 100% ;
  49. }
  50. body {
  51. position: relative ;
  52. color: #505050 ;
  53. font-family: 'Arial' ;
  54. background-attachment: fixed ;
  55. min-height: 100%;
  56. margin: 0;
  57. padding: 0;
  58. background-color: #f7f7f7 ;
  59. }
  60. strong {
  61. font-weight: bold ;
  62. }
  63. #main {
  64. padding-bottom: 50px ;
  65. a {
  66. color: $courant ;
  67. text-decoration: underline ;
  68. &:focus, &:active {
  69. outline-color: gray ;
  70. color: $color1 ;
  71. }
  72. &:hover {
  73. color: $color1 ;
  74. }
  75. &.btn {
  76. text-decoration: none ;
  77. }
  78. }
  79. .btn-primary {
  80. background-color: $color1 ;
  81. border: solid 1px $color1 ;
  82. color: white ;
  83. &:hover, &:active, &:focus {
  84. background-color: darken($color1, 5) ;
  85. border: solid 1px $color1 ;
  86. color: white ;
  87. }
  88. }
  89. .form-control:focus {
  90. @include box-shadow(none) ;
  91. border: solid 1px $color1 ;
  92. }
  93. }
  94. p {
  95. padding-bottom: 20px ;
  96. line-height: 21px ;
  97. }
  98. ul {
  99. padding-left: 20px ;
  100. list-style-type: disc ;
  101. margin-bottom: 10px ;
  102. li {
  103. padding-left: 5px ;
  104. }
  105. }
  106. .clr {
  107. clear: both ;
  108. }
  109. .btn {
  110. background-image: none ;
  111. }
  112. #main .alert {
  113. background-image: none;
  114. background-color: white ;
  115. border-bottom-width: 3px ;
  116. }
  117. .alert {
  118. &.alert-warning {
  119. a {
  120. color: #8a6d3b ;
  121. //text-decoration: none ;
  122. //font-weight: bold ;
  123. }
  124. }
  125. }
  126. #main {
  127. position: relative ;
  128. .inner {
  129. width: 960px ;
  130. margin: 0px auto ;
  131. }
  132. }
  133. #content {
  134. #the-content {
  135. padding-top: 100px ;
  136. padding-left: 30px ;
  137. padding-right: 30px ;
  138. padding-bottom: 50px ;
  139. }
  140. .content-text {
  141. h1 {
  142. font-family: 'highvoltageregular' ;
  143. font-size: 30px ;
  144. color: black ;
  145. text-transform: uppercase ;
  146. }
  147. h2 {
  148. font-family: 'highvoltageregular' ;
  149. font-size: 20px ;
  150. text-transform: none ;
  151. padding-bottom: 0px ;
  152. margin-bottom: 5px ;
  153. margin-top: 5px ;
  154. }
  155. }
  156. }
  157. #block-demo {
  158. padding: 10px 0px ;
  159. background-color: $color1 ;
  160. color: white;
  161. text-align: center ;
  162. a {
  163. color: white ;
  164. text-decoration: underline ;
  165. }
  166. }
  167. #header {
  168. z-index: 100 ;
  169. border-bottom: solid 1px $gris1 ;
  170. background-color: white ;
  171. .container {
  172. position: relative ;
  173. }
  174. #the-header {
  175. height: 80px ;
  176. height: auto ;
  177. }
  178. #env-dev {
  179. font-family: 'comfortaabold' ;
  180. text-align: center ;
  181. font-size: 18px ;
  182. padding-top: 10px ;
  183. padding-bottom: 10px ;
  184. color: $color1 ;
  185. background-color: transparent ;
  186. position: absolute ;
  187. top: 18px ;
  188. left: 79px ;
  189. }
  190. #link-home {
  191. float: left ;
  192. padding-top: 10px ;
  193. padding-bottom: 10px ;
  194. text-decoration: none ;
  195. font-size: 22px ;
  196. color: black ;
  197. display: block ;
  198. img {
  199. height: 50px ;
  200. margin-bottom: 5px ;
  201. float: left ;
  202. }
  203. .text {
  204. float: left ;
  205. padding-left: 10px ;
  206. .bap {
  207. font-family: "comfortaalight" ;
  208. font-size: 24px ;
  209. }
  210. .plateforme {
  211. font-size: 17px ;
  212. font-family: "myriadpro-light" ;
  213. color: $color1 ;
  214. }
  215. }
  216. }
  217. #link-space-producer {
  218. border-left: solid 1px #e0e0e0 ;
  219. color: $color1 ;
  220. }
  221. nav {
  222. padding-top: 0px ;
  223. margin-bottom: 0px ;
  224. border: 0px none ;
  225. background: none ;
  226. @include box-shadow(none) ;
  227. .navbar-toggle {
  228. background-color: white ;
  229. }
  230. ul {
  231. float: right ;
  232. padding: 0px ;
  233. margin: 0px ;
  234. li {
  235. padding: 0px ;
  236. display: block ;
  237. a {
  238. display: block ;
  239. text-decoration: none ;
  240. background-color: transparent ;
  241. padding: 30px 20px ;
  242. margin: 0px ;
  243. border-right: solid 1px #e0e0e0 ;
  244. font-family: 'capsuularegular' ;
  245. color: black ;
  246. font-size: 18px ;
  247. @include border-radius(0px) ;
  248. @include box-shadow(none) ;
  249. span {
  250. font-size: 15px ;
  251. }
  252. &:hover {
  253. color: $color1 ;
  254. background-color: white ;
  255. }
  256. }
  257. &#li-home a {
  258. border-left: solid 1px #e0e0e0 ;
  259. }
  260. &.active {
  261. a {
  262. background-color: $color1;
  263. color: white ;
  264. }
  265. }
  266. ul {
  267. li {
  268. a {
  269. padding: 10px 10px ;
  270. }
  271. }
  272. }
  273. }
  274. }
  275. }
  276. #link-logout {
  277. .name {
  278. color: gray;
  279. font-size: 10px;
  280. left: 18px;
  281. position: relative;
  282. top: -4px;
  283. }
  284. }
  285. }
  286. #content {
  287. position: relative ;
  288. padding: 20px 0px ;
  289. padding-top: 35px ;
  290. padding-bottom: 50px ;
  291. h1#title-site, h1 {
  292. font-family: "highvoltageregular" ;
  293. font-size: 35px ;
  294. }
  295. h2 {
  296. color: $courant ;
  297. padding-bottom: 15px ;
  298. font-size: 25px ;
  299. line-height: 35px ;
  300. font-family: 'highvoltageregular' ;
  301. text-transform: uppercase ;
  302. position: relative ;
  303. margin-top: 30px ;
  304. }
  305. h3 {
  306. font-family: 'highvoltageregular' ;
  307. font-size: 20px ;
  308. color: $courant ;
  309. }
  310. #description {
  311. img {
  312. width: 100% ;
  313. }
  314. }
  315. #main-img {
  316. max-width: 100% ;
  317. border: solid 1px #e0e0e0 ;
  318. padding: 5px ;
  319. @include border-radius(5px) ;
  320. }
  321. #row-signup {
  322. text-align: center ;
  323. margin-top: 40px ;
  324. padding-top: 40px ;
  325. a.btn {
  326. padding: 10px 20px ;
  327. font-size: 20px ;
  328. text-transform: uppercase ;
  329. }
  330. a.btn-primary {
  331. margin-right: 15px ;
  332. }
  333. }
  334. #row-presentation-distrib {
  335. border-bottom: solid 1px #e0e0e0 ;
  336. .glyphicon-chevron-right {
  337. color: gray ;
  338. margin-right: 8px ;
  339. font-size: 18px ;
  340. position: relative ;
  341. top: -1px ;
  342. }
  343. h2 {
  344. font-family: 'capsuularegular' ;
  345. text-align: center ;
  346. margin-top: 0px ;
  347. text-transform: none ;
  348. }
  349. }
  350. #row-users-producers {
  351. div.producer, div.users {
  352. margin-bottom: 50px ;
  353. }
  354. padding-top: 30px ;
  355. h2 {
  356. text-align: left ;
  357. margin-bottom: 10px ;
  358. margin-top: 0px ;
  359. .img {
  360. height: 35px ;
  361. }
  362. span {
  363. margin-left: 10px ;
  364. font-size: 25px ;
  365. position: relative ;
  366. top: 5px ;
  367. }
  368. }
  369. p.presentation {
  370. font-family: 'capsuularegular' ;
  371. color: black ;
  372. font-size: 20px ;
  373. line-height: 26px ;
  374. }
  375. p {
  376. padding-bottom: 4px ;
  377. }
  378. .table {
  379. td {
  380. border-color: $color1 ;
  381. color: $color1 ;
  382. text-align: center ;
  383. }
  384. }
  385. .btn-primary {
  386. }
  387. }
  388. #row-functionalities {
  389. .block {
  390. margin-bottom: 10px ;
  391. p {
  392. font-family: 'capsuularegular' ;
  393. font-size: 18px ;
  394. margin-left: 70px ;
  395. }
  396. img {
  397. float: left ;
  398. width: 50px ;
  399. height: auto ;
  400. }
  401. a {
  402. text-decoration: none ;
  403. color: black ;
  404. &:hover {
  405. color: $color1 ;
  406. }
  407. }
  408. }
  409. .block-points-sale-products {
  410. img {
  411. width: 40px ;
  412. }
  413. }
  414. }
  415. #row-rates {
  416. table {
  417. th {
  418. font-family: 'capsuularegular' ;
  419. font-weight: normal ;
  420. font-size: 23px ;
  421. }
  422. th, td {
  423. text-align: center ;
  424. }
  425. }
  426. }
  427. #btn-demo {
  428. &:hover, &:focus, &:active {
  429. color: black ;
  430. }
  431. }
  432. #modal-prices {
  433. }
  434. }
  435. #content #contact {
  436. display: none ;
  437. .icon {
  438. width: 55px ;
  439. top: -15px ;
  440. margin-left: -70px ;
  441. }
  442. .form-control:focus {
  443. /*@include box-shadow(0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px $jaune) ;
  444. border-color: $jaune ;*/
  445. }
  446. .form-group {
  447. text-align: center ;
  448. }
  449. .img-right {
  450. float: right ;
  451. img {
  452. width: 300px ;
  453. }
  454. }
  455. }
  456. #bookmarked-producers {
  457. padding: 0px ;
  458. padding-top: 20px ;
  459. margin: 0px ;
  460. border-bottom: solid 1px #e0e0e0 ;
  461. h2 {
  462. font-family: 'highvoltageregular' ;
  463. color: $courant ;
  464. text-align: left ;
  465. font-size: 16px ;
  466. margin: 0px ;
  467. padding: 0px ;
  468. margin-left: 15px ;
  469. margin-bottom: 15px ;
  470. }
  471. .col-md-12, .col-md-6, .col-md-3 {
  472. float: left ;
  473. }
  474. .col-md-12 .producer {
  475. background-size: 920px auto ;
  476. }
  477. .col-md-6 .producer {
  478. background-size: 460px auto ;
  479. }
  480. .col-md-3 .producer {
  481. background-size: 230px auto ;
  482. }
  483. .producer {
  484. position: relative ;
  485. height: 100px ;
  486. list-style-type: none ;
  487. text-align: center ;
  488. margin-bottom: 20px ;
  489. background-size: 300px auto ;
  490. background-position: center center ;
  491. background-repeat: no-repeat ;
  492. border: solid 1px #e0e0e0 ;
  493. background-color: white ;
  494. &.logo-distrib-default {
  495. background-size: auto 70px;
  496. background-position: center 0px ;
  497. }
  498. a {
  499. position: absolute ;
  500. bottom: 0px ;
  501. left: 0px ;
  502. width: 100% ;
  503. background-color: $color1 ;
  504. border-color: $color1 ;
  505. color: white ;
  506. @include border-radius(0px) ;
  507. &:hover {
  508. background-color: darken($color1, 2);
  509. }
  510. }
  511. }
  512. #discover {
  513. padding-bottom: 20px ;
  514. text-align: center ;
  515. p {
  516. padding-bottom: 0px ;
  517. color: $color2 ;
  518. }
  519. .btn {
  520. background-color: $color2 ;
  521. color: $color1 ;
  522. border: solid 1px $color2 ;
  523. }
  524. }
  525. }
  526. #footer {
  527. position: absolute ;
  528. bottom: 0px ;
  529. width: 100% ;
  530. text-align: left ;
  531. padding-top: 30px ;
  532. padding-bottom: 17px ;
  533. background-color: white ;
  534. border-top: solid 1px #e0e0e0 ;
  535. a {
  536. color: black ;
  537. font-family: 'capsuularegular' ;
  538. font-size: 18px ;
  539. text-decoration: none ;
  540. padding-left: 10px ;
  541. padding-right: 10px ;
  542. border-right: solid 1px white ;
  543. &:hover {
  544. text-decoration: underline ;
  545. }
  546. &:last-child {
  547. border: 0px none ;
  548. }
  549. }
  550. #code-source {
  551. img {
  552. height: 20px ;
  553. }
  554. }
  555. }
  556. #content #mentions {
  557. padding-top: 20px ;
  558. div.content {
  559. width: 60% ;
  560. font-size: 90% ;
  561. }
  562. p {
  563. padding-bottom: 15px ;
  564. }
  565. h2 {
  566. color: black ;
  567. padding-bottom: 40px ;
  568. font-size: 25px ;
  569. line-height: 35px ;
  570. font-family: 'highvoltageregular' ;
  571. }
  572. h3 {
  573. font-family: "highvoltageregular" ;
  574. font-size: 18px ;
  575. padding-bottom: 12px ;
  576. margin-top: 10px ;
  577. color: black ;
  578. }
  579. }
  580. .mentions {
  581. #main, body {
  582. //background-color: white ;
  583. }
  584. }
  585. .vegas-loading {
  586. display: none ;
  587. }
  588. #profil-user {
  589. .form-group.field-user-no_mail label {
  590. font-weight: normal ;
  591. }
  592. .form-group label {
  593. cursor: pointer ;
  594. }
  595. #mails-days-distribution {
  596. .form-group {
  597. float: left ;
  598. margin-right: 15px ;
  599. label {
  600. font-weight: normal ;
  601. }
  602. }
  603. }
  604. p.strong {
  605. font-weight: bold ;
  606. }
  607. }
  608. /* login */
  609. $max-width-form: 500px ;
  610. .site-login {
  611. .col-lg-5 {
  612. margin: 0px auto ;
  613. float: none ;
  614. max-width: $max-width-form ;
  615. }
  616. }
  617. /* signup */
  618. .modal-backdrop {
  619. z-index: 999;
  620. }
  621. .site-signup {
  622. .col-lg-5 {
  623. margin: 0px auto ;
  624. float: none ;
  625. max-width: $max-width-form ;
  626. }
  627. }
  628. #modal-cgv {
  629. .modal-body {
  630. h2 {
  631. margin-bottom: 5px ;
  632. padding-bottom: 0px ;
  633. font-size: 20px ;
  634. margin-top: 0px ;
  635. }
  636. }
  637. }
  638. #form-signup {
  639. #user-producer {
  640. margin-bottom: 30px ;
  641. }
  642. #signupform-id_producer {
  643. option:disabled {
  644. font-weight: bold ;
  645. color: black ;
  646. }
  647. }
  648. #champs-producer {
  649. display: none ;
  650. }
  651. #buttons-signup {
  652. margin-top: 30px;
  653. }
  654. }
  655. #col-left {
  656. padding: 0px ;
  657. z-index: 15 ;
  658. .affix {
  659. width: 25% ;
  660. border-right: solid 1px #e0e0e0 ;
  661. background-color: #FAFAFA ;
  662. height: 100% ;
  663. }
  664. #link-home {
  665. text-decoration: none ;
  666. font-size: 22px ;
  667. color: black ;
  668. display: block ;
  669. padding: 10px ;
  670. background-color: $color2 ;
  671. img {
  672. height: 50px ;
  673. margin-bottom: 5px ;
  674. float: left ;
  675. }
  676. .text {
  677. padding-left: 62px ;
  678. .bap {
  679. font-family: "comfortaalight" ;
  680. font-size: 24px ;
  681. }
  682. .plateforme {
  683. font-size: 17px ;
  684. font-family: "myriadpro-light" ;
  685. color: $color1 ;
  686. }
  687. }
  688. }
  689. h2 {
  690. font-family: 'myriadpro-regular' ;
  691. color: black ;
  692. margin: 0px ;
  693. margin-bottom: 10px ;
  694. padding: 15px 0px 5px 15px ;
  695. }
  696. #links {
  697. background-color: white ;
  698. margin-bottom: 20px ;
  699. ul {
  700. li {
  701. a {
  702. text-align: center ;
  703. border-right: solid 1px #e0e0e0 ;
  704. &:hover {
  705. background-color: $color1 ;
  706. color: white ;
  707. }
  708. }
  709. &:last-child a {
  710. border-right: 0px none ;
  711. }
  712. }
  713. }
  714. }
  715. #producers nav.nav-producers {
  716. ul {
  717. li {
  718. a {
  719. padding-left: 50px ;
  720. height: 40px ;
  721. //margin-right: 20px ;
  722. }
  723. &.active a {
  724. background-color: $color1 ;
  725. position: relative ;
  726. color: white ;
  727. &:after {
  728. right: -40px ;
  729. top: 50%;
  730. border: solid transparent;
  731. content: " ";
  732. height: 0;
  733. width: 0;
  734. position: absolute;
  735. pointer-events: none;
  736. border-color: rgba(187, 135, 87, 0);
  737. border-left-color: #BB8757;
  738. border-width: 20px;
  739. margin-top: -20px;
  740. }
  741. }
  742. }
  743. }
  744. }
  745. ul {
  746. list-style-type: none ;
  747. margin: 0px ;
  748. padding: 0px ;
  749. li {
  750. margin: 0px ;
  751. padding: 0px ;
  752. a {
  753. text-decoration: none ;
  754. font-family: 'comfortaaregular' ;
  755. font-family: 'myriadpro-regular' ;
  756. font-size: 15px ;
  757. padding: 10px ;
  758. border-bottom: solid 1px #e0e0e0 ;
  759. display: block ;
  760. color: black ;
  761. span.name, span.wording {
  762. display: none ;
  763. }
  764. }
  765. }
  766. }
  767. p {
  768. padding: 20px ;
  769. padding-top: 0px ;
  770. color: gray ;
  771. }
  772. }
  773. #content {
  774. .header-title {
  775. height: 79px ;
  776. padding: 20px 20px ;
  777. position: fixed ;
  778. top: 0px ;
  779. width: 100% ;
  780. background-color: white ;
  781. z-index: 10 ;
  782. box-sizing: border-box ;
  783. border-bottom: solid 1px #e0e0e0 ;
  784. @include box-shadow(0px 0px 8px #e0e0e0) ;
  785. h1 {
  786. color: black ;
  787. font-family: 'myriadpro-regular' ;
  788. margin: 0px ;
  789. font-size: 25px ;
  790. text-transform: uppercase ;
  791. }
  792. h2 {
  793. color: gray ;
  794. text-transform: none ;
  795. font-size: 15px ;
  796. margin-top: 3px ;
  797. line-height: 20px ;
  798. }
  799. }
  800. }
  801. .header-producer {
  802. z-index: 1 ;
  803. #block-main-img {
  804. height: 144px ;
  805. overflow: hidden ;
  806. #main-img {
  807. width: 100% ;
  808. height: auto ;
  809. border: 0px none ;
  810. padding: 0px ;
  811. @include border-radius(0px) ;
  812. }
  813. }
  814. h1 {
  815. font-family: 'comfortaaregular' ;
  816. text-align: center ;
  817. position: absolute ;
  818. top: 30px ;
  819. left: 40px ;
  820. span {
  821. background-color: rgba(255, 255, 255, 0.8) ;
  822. //background-color: rgba(187, 135, 87, 0.6) ;
  823. //color: white ;
  824. padding: 10px 30px ;
  825. border: dotted 1px black ;
  826. //@include border-radius(20px) ;
  827. }
  828. }
  829. }
  830. nav#menu-producer {
  831. border-bottom: solid 1px #e0e0e0 ;
  832. //background-color: #FAFAFA ;
  833. ul {
  834. li {
  835. padding: 0px ;
  836. margin: 0px ;
  837. a {
  838. border-right: solid 1px #e0e0e0 ;
  839. text-decoration: none ;
  840. @include border-radius(0px) ;
  841. &:hover {
  842. background-color: $color1 ;
  843. color: white ;
  844. }
  845. }
  846. }
  847. }
  848. }
  849. .site-contact {
  850. .col-lg-5 {
  851. margin: 0px auto ;
  852. float: none ;
  853. }
  854. #contact-phone {
  855. font-family: 'capsuularegular' ;
  856. font-size: 20px ;
  857. line-height: 25px ;
  858. }
  859. }
  860. @import "_order_system.scss" ;
  861. @import "_responsive.scss" ;