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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026
  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. }
  855. @import "_order_system.scss" ;
  856. @import "_responsive.scss" ;