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

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