You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1422 lines
23KB

  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. $color1: #F2B84B;
  40. $color2: white;
  41. @import "_fonts.scss";
  42. html {
  43. height: 100%;
  44. }
  45. body {
  46. position: relative;
  47. color: #505050;
  48. font-family: 'Arial';
  49. background-attachment: fixed;
  50. //min-height: 100%;
  51. margin: 0;
  52. padding: 0;
  53. background-color: #333;
  54. //background-color: #F5DE83;
  55. }
  56. strong {
  57. font-weight: bold;
  58. }
  59. .table {
  60. background-color: white;
  61. }
  62. .help-block {
  63. padding-bottom: 5px;
  64. }
  65. .row {
  66. margin: 0px;
  67. }
  68. #main {
  69. background-color: #FFF8DC;
  70. padding-bottom: 50px;
  71. min-height: 800px;
  72. a {
  73. color: $courant;
  74. text-decoration: underline;
  75. &:focus, &:active {
  76. outline-color: gray;
  77. color: $color1;
  78. }
  79. &:hover {
  80. color: $color1;
  81. }
  82. &.btn {
  83. text-decoration: none;
  84. }
  85. }
  86. a.btn-default {
  87. &:focus, &:active {
  88. color: $courant;
  89. }
  90. &:hover {
  91. color: $courant;
  92. }
  93. }
  94. }
  95. #section-user-top {
  96. .navbar {
  97. margin-bottom: 0px;
  98. @include border-radius(0px none);
  99. }
  100. }
  101. #bookmarked-producers, #main {
  102. .btn-primary {
  103. background-color: $color1;
  104. border: solid 1px $color1;
  105. color: white;
  106. &:hover, &:active, &:focus {
  107. background-color: darken($color1, 5);
  108. border: solid 1px $color1;
  109. color: white;
  110. }
  111. }
  112. }
  113. .form-control:focus {
  114. @include box-shadow(none) ;
  115. border: solid 1px $color1;
  116. }
  117. p {
  118. padding-bottom: 20px;
  119. line-height: 21px;
  120. }
  121. ul {
  122. padding-left: 20px;
  123. list-style-type: disc;
  124. margin-bottom: 10px;
  125. li {
  126. padding-left: 5px;
  127. }
  128. }
  129. .clr {
  130. clear: both;
  131. }
  132. .btn {
  133. background-image: none;
  134. }
  135. #main .alert {
  136. background-image: none;
  137. background-color: white;
  138. border-bottom-width: 3px;
  139. }
  140. .alert {
  141. &.alert-warning {
  142. a {
  143. color: #8a6d3b;
  144. //text-decoration: none ;
  145. //font-weight: bold ;
  146. }
  147. }
  148. }
  149. #main {
  150. position: relative;
  151. .inner {
  152. width: 960px;
  153. margin: 0px auto;
  154. }
  155. }
  156. section#header-title {
  157. padding-top: 30px;
  158. padding-bottom: 40px;
  159. background-color: $color1;
  160. h1 {
  161. text-align: center;
  162. color: white;
  163. font-family: 'highvoltageregular';
  164. .glyphicon {
  165. position: relative;
  166. top: 4px;
  167. margin-right: 10px;
  168. }
  169. }
  170. }
  171. #content {
  172. #the-content {
  173. padding-top: 100px;
  174. padding-left: 30px;
  175. padding-right: 30px;
  176. padding-bottom: 50px;
  177. }
  178. .content-text {
  179. h1 {
  180. font-family: 'highvoltageregular';
  181. font-size: 30px;
  182. color: black;
  183. text-transform: uppercase;
  184. }
  185. h2 {
  186. font-family: 'highvoltageregular';
  187. font-size: 20px;
  188. text-transform: none;
  189. padding-bottom: 0px;
  190. margin-bottom: 5px;
  191. margin-top: 5px;
  192. }
  193. }
  194. }
  195. #block-demo {
  196. padding: 10px 0px;
  197. background-color: $color1;
  198. color: white;
  199. text-align: center;
  200. a {
  201. color: white;
  202. text-decoration: underline;
  203. }
  204. }
  205. #header {
  206. z-index: 100;
  207. border-bottom: solid 1px $gris1;
  208. border: 0px none;
  209. background-color: white;
  210. .container {
  211. position: relative;
  212. }
  213. #the-header {
  214. height: 80px;
  215. height: auto;
  216. }
  217. #env-dev {
  218. font-family: 'comfortaabold';
  219. text-align: center;
  220. font-size: 18px;
  221. padding-top: 10px;
  222. padding-bottom: 10px;
  223. color: $color1;
  224. background-color: transparent;
  225. position: absolute;
  226. top: 18px;
  227. left: 79px;
  228. }
  229. #link-home {
  230. float: left;
  231. //padding-top: 7px;
  232. //padding-bottom: 15px;
  233. padding-top: 20px;
  234. padding-bottom: 20px;
  235. text-decoration: none;
  236. font-size: 26px;
  237. display: block;
  238. font-family: "highvoltageregular";
  239. color: #333;
  240. &.souke {
  241. padding-top: 0px;
  242. position: relative;
  243. top: 7px;
  244. }
  245. span {
  246. //color: $color1;
  247. //color: gray;
  248. }
  249. img {
  250. height: 50px;
  251. margin-bottom: 5px;
  252. float: left;
  253. }
  254. .text {
  255. float: left;
  256. padding-left: 10px;
  257. .bap {
  258. font-family: "comfortaalight";
  259. font-size: 24px;
  260. }
  261. .plateforme {
  262. font-size: 17px;
  263. font-family: "myriadpro-light";
  264. color: $color1;
  265. }
  266. }
  267. }
  268. #presentation-distrib {
  269. display: none;
  270. float: left;
  271. width: 300px;
  272. margin-top: 20px;
  273. margin-left: 20px;
  274. text-align: left;
  275. font-family: 'capsuularegular';
  276. font-size: 18px;
  277. line-height: 20px;
  278. }
  279. #link-space-producer {
  280. border-left: solid 1px #e0e0e0;
  281. color: $color1;
  282. }
  283. nav {
  284. padding-top: 0px;
  285. margin-bottom: 0px;
  286. border: 0px none;
  287. background: none;
  288. @include box-shadow(none) ;
  289. .navbar-toggle {
  290. background-color: white;
  291. }
  292. ul {
  293. float: right;
  294. padding: 0px;
  295. margin: 0px;
  296. margin-top: 18px;
  297. li {
  298. padding: 0px;
  299. display: block;
  300. a {
  301. display: block;
  302. text-decoration: none;
  303. background-color: transparent;
  304. padding: 7px 15px;
  305. margin: 0px;
  306. font-family: 'capsuularegular';
  307. font-weight: bold;
  308. color: black;
  309. font-size: 16px;
  310. @include border-radius(5px) ;
  311. @include box-shadow(none) ;
  312. span {
  313. font-size: 15px;
  314. margin-right: 3px;
  315. }
  316. &:hover {
  317. color: $color1;
  318. background-color: white;
  319. }
  320. }
  321. &#li-home a {
  322. }
  323. &.active {
  324. a {
  325. background-color: $color1;
  326. color: white;
  327. }
  328. }
  329. ul {
  330. li {
  331. a {
  332. padding: 10px 10px;
  333. }
  334. }
  335. }
  336. }
  337. }
  338. }
  339. #link-logout {
  340. .name {
  341. color: gray;
  342. font-size: 10px;
  343. left: 18px;
  344. position: relative;
  345. top: -4px;
  346. }
  347. }
  348. }
  349. .home {
  350. #main {
  351. background: black top center no-repeat url(../img/carottes.jpg);
  352. background-size: 100% auto;
  353. }
  354. }
  355. .vertical-align {
  356. display: flex;
  357. align-items: center;
  358. }
  359. #content {
  360. position: relative;
  361. padding: 20px 0px;
  362. padding-top: 35px;
  363. padding-bottom: 60px;
  364. h1#title-site, h1 {
  365. font-family: "highvoltageregular";
  366. font-size: 35px;
  367. }
  368. h2 {
  369. color: $courant;
  370. padding-bottom: 15px;
  371. font-size: 35px;
  372. line-height: 35px;
  373. font-family: 'highvoltageregular';
  374. text-transform: uppercase;
  375. position: relative;
  376. margin-top: 30px;
  377. }
  378. h3 {
  379. font-family: 'highvoltageregular';
  380. font-size: 20px;
  381. color: $courant;
  382. }
  383. #presentation-distrib {
  384. margin-top: 20px;
  385. margin-bottom: 50px;
  386. text-align: center;
  387. h1 {
  388. font-family: 'capsuularegular';
  389. text-align: center;
  390. margin-top: 15px;
  391. text-transform: none;
  392. color: $color1;
  393. font-weight: bold;
  394. font-size: 30px;
  395. margin-bottom: 0px;
  396. padding-bottom: 0px;
  397. }
  398. p {
  399. color: white;
  400. font-family: 'capsuularegular';
  401. font-size: 20px;
  402. margin-top: 20px;
  403. }
  404. }
  405. .panel {
  406. background-color: white;
  407. border: solid 1px #e0e0e0;
  408. .panel-heading {
  409. background-color: #FFF8DC;
  410. border-bottom: 0px;
  411. padding-top: 10px;
  412. padding-bottom: 8px;
  413. border-bottom: solid 1px #e0e0e0;
  414. h2.panel-title {
  415. margin: 0px;
  416. padding: 0px;
  417. padding-top: 0px;
  418. text-align: center;
  419. .img {
  420. height: 20px;
  421. display: none;
  422. }
  423. .glyphicon {
  424. font-size: 20px;
  425. }
  426. span.the-title {
  427. font-size: 26px;
  428. position: relative;
  429. top: 0px;
  430. text-transform: none;
  431. }
  432. }
  433. }
  434. .panel-body {
  435. background-color: white;
  436. @include border-radius(0px 0px 5px 5px) ;
  437. p {
  438. padding-bottom: 10px;
  439. }
  440. }
  441. &.panel-primary {
  442. border: 0px none;
  443. border-bottom: solid 1px #e0e0e0;
  444. @include border-radius(8px);
  445. margin-bottom: 30px;
  446. .panel-heading {
  447. @include border-radius(8px 8px 0px 0px);
  448. border: 0px none;
  449. background-color: $color1;
  450. background-color: white;
  451. padding-top: 15px;
  452. padding-bottom: 8px;
  453. h2.panel-title {
  454. color: $color1;
  455. .glyphicon {
  456. font-size: 30px;
  457. margin-right: 6px;
  458. position: relative;
  459. top: 4px;
  460. }
  461. .the-title {
  462. font-size: 28px;
  463. }
  464. }
  465. }
  466. .panel-body {
  467. @include border-radius(0px 0px 8px 8px);
  468. border: 0px none;
  469. }
  470. .panel-footer {
  471. }
  472. }
  473. }
  474. #row-users-producers {
  475. width: 100%;
  476. text-align: center;
  477. display: table;
  478. margin-bottom: 20px;
  479. padding-top: 100px;
  480. @include border-radius(5px) ;
  481. .col-md-6 {
  482. //display: table-cell;
  483. //width: 50%;
  484. .panel {
  485. height: 100%;
  486. margin-bottom: 20px;
  487. background-color: transparent;
  488. @include box-shadow(none) ;
  489. }
  490. &.producer {
  491. padding-left: 0px;
  492. }
  493. &.users {
  494. padding-right: 0px;
  495. }
  496. .hook {
  497. font-family: 'capsuularegular';
  498. font-size: 23px;
  499. line-height: 28px;
  500. margin-top: 10px;
  501. margin-bottom: 30px;
  502. }
  503. .links {
  504. a {
  505. margin-bottom: 5px;
  506. }
  507. }
  508. }
  509. }
  510. #row-users-producers,
  511. #row-functionalities-rates {
  512. div.producer, div.users {
  513. }
  514. div.producer {
  515. .btn-primary {
  516. //margin-bottom: 5px ;
  517. }
  518. }
  519. .panel-body {
  520. //font-family: 'capsuularegular';
  521. //color: black;
  522. //font-size: 20px;
  523. //line-height: 26px;
  524. }
  525. p {
  526. padding-bottom: 4px;
  527. }
  528. }
  529. #row-functionalities-rates {
  530. .block {
  531. position: relative;
  532. margin-bottom: 25px;
  533. padding-left: 70px;
  534. min-height: 50px;
  535. .glyphicon {
  536. font-size: 40px;
  537. position: absolute;
  538. left: 0px;
  539. top: 0px;
  540. }
  541. p {
  542. font-family: 'capsuularegular';
  543. font-size: 18px;
  544. }
  545. a {
  546. text-decoration: none;
  547. color: black;
  548. &:hover {
  549. color: $color1;
  550. }
  551. }
  552. }
  553. .block-points-sale-products {
  554. img {
  555. width: 40px;
  556. }
  557. }
  558. }
  559. #block-services {
  560. .panel-body {
  561. .panel-body {
  562. padding-bottom: 0px;
  563. h3 {
  564. margin-top: 0px;
  565. }
  566. }
  567. }
  568. }
  569. #block-rates {
  570. table {
  571. th {
  572. //font-family: 'capsuularegular';
  573. font-weight: bold;
  574. font-size: 14px;
  575. }
  576. }
  577. }
  578. #btn-demo {
  579. &:hover, &:focus, &:active {
  580. color: black;
  581. }
  582. }
  583. #modal-prices {
  584. }
  585. }
  586. #content #contact {
  587. display: none;
  588. .icon {
  589. width: 55px;
  590. top: -15px;
  591. margin-left: -70px;
  592. }
  593. .form-control:focus {
  594. /*@include box-shadow(0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px $jaune) ;
  595. border-color: $jaune ;*/
  596. }
  597. .form-group {
  598. text-align: center;
  599. }
  600. .img-right {
  601. float: right;
  602. img {
  603. width: 300px;
  604. }
  605. }
  606. }
  607. #bookmarked-producers {
  608. padding: 0px;
  609. padding-top: 15px;
  610. padding-bottom: 7px;
  611. margin: 0px;
  612. border-bottom: solid 1px #e0e0e0;
  613. background-color: white;
  614. h2 {
  615. float: left;
  616. font-family: 'highvoltageregular';
  617. color: $courant;
  618. text-align: left;
  619. font-size: 16px;
  620. margin: 0px;
  621. padding: 0px;
  622. color: $courant;
  623. }
  624. #producers {
  625. position: relative;
  626. top: -5px;
  627. left: 5px;
  628. }
  629. #discover {
  630. padding-bottom: 20px;
  631. text-align: center;
  632. p {
  633. padding-bottom: 0px;
  634. color: $color2;
  635. }
  636. .btn {
  637. background-color: $color2;
  638. color: $color1;
  639. border: solid 1px $color2;
  640. }
  641. }
  642. }
  643. #footer {
  644. position: absolute;
  645. bottom: 0px;
  646. width: 100%;
  647. text-align: left;
  648. padding-top: 22px;
  649. padding-bottom: 16px;
  650. background-color: #333;
  651. border-top: 0px none;
  652. color: white;
  653. a {
  654. color: white;
  655. font-family: 'capsuularegular';
  656. font-size: 18px;
  657. text-decoration: none;
  658. padding-left: 10px;
  659. padding-right: 10px;
  660. border-right: solid 1px white;
  661. border: 0px none;
  662. &:hover {
  663. text-decoration: underline;
  664. }
  665. &:last-child {
  666. border: 0px none;
  667. }
  668. }
  669. }
  670. .site-producers {
  671. #producers-list {
  672. #producer-search {
  673. padding-bottom: 15px;
  674. }
  675. .alert-no-results {
  676. display: none;
  677. }
  678. .panel {
  679. border: solid 1px #e0e0e0;
  680. @include border-radius(8px);
  681. .panel-body {
  682. border: 0px none;
  683. @include border-radius(8px);
  684. h2 {
  685. font-family: 'capsuularegular';
  686. font-weight: bold;
  687. font-size: 27px;
  688. text-transform: none;
  689. margin-top: 0px;
  690. margin-bottom: 5px;
  691. padding-bottom: 0px;
  692. }
  693. p {
  694. padding-bottom: 0px;
  695. }
  696. .producer-type {
  697. text-transform: uppercase;
  698. margin-bottom: 10px;
  699. font-size: 14px;
  700. }
  701. .producer-location {
  702. }
  703. }
  704. .panel-footer {
  705. @include border-radius(0px 0px 8px 8px);
  706. border: 0px none;
  707. //text-align: right;
  708. }
  709. .logo {
  710. float: right;
  711. position: relative;
  712. background-color: white;
  713. width: 110px;
  714. height: 110px;
  715. @include border-radius(110px);
  716. border: solid 1px #e0e0e0;
  717. text-align: right;
  718. overflow: hidden;
  719. .img-logo {
  720. position: absolute;
  721. top: 50%;
  722. left: 50%;
  723. transform: translate(-50%, -50%);
  724. max-width: 90px;
  725. max-height: 90px;
  726. }
  727. }
  728. }
  729. }
  730. #producers-map {
  731. height: 750px;
  732. border: solid 1px #e0e0e0;
  733. @include border-radius(8px);
  734. &.fixed {
  735. position: fixed !important;
  736. top: 20px;
  737. width: 300px;
  738. //height: 80%;
  739. height: 750px;
  740. }
  741. a {
  742. text-decoration: none;
  743. }
  744. .popup-producer {
  745. font-size: 14px;
  746. color: #505050;
  747. .name {
  748. font-family: 'capsuularegular';
  749. font-weight: bold;
  750. font-size: 23px;
  751. color: #323232;
  752. }
  753. .type {
  754. text-transform: uppercase;
  755. font-size: 13px;
  756. margin-bottom: 12px;
  757. }
  758. .address {
  759. margin-bottom: 12px;
  760. }
  761. .link {
  762. color: white;
  763. }
  764. }
  765. }
  766. }
  767. #content .site-about {
  768. .panel {
  769. .panel-heading {
  770. h2 {
  771. margin: 0px;
  772. padding: 0px;
  773. font-size: 25px;
  774. }
  775. }
  776. .panel-body {
  777. h2 {
  778. font-size: 20px;
  779. text-transform: none;
  780. margin-bottom: 7px;
  781. padding-bottom: 0px;
  782. margin-top: 0px;
  783. }
  784. p:last-child {
  785. margin-bottom: 0px;
  786. padding-bottom: 5px;
  787. }
  788. }
  789. }
  790. #few-numbers {
  791. .item {
  792. text-align: center;
  793. padding-top: 20px;
  794. padding-bottom: 20px;
  795. .number {
  796. font-family: 'highvoltageregular';
  797. font-weight: bold;
  798. font-size: 35px;
  799. }
  800. .description {
  801. font-size: 16px;
  802. }
  803. .detail {
  804. color: gray;
  805. }
  806. }
  807. }
  808. #carousel-producers-testimonials {
  809. transition: all 0.4s;
  810. .item, .carousel-caption {
  811. transition: all 0.4s;
  812. }
  813. .carousel-indicators {
  814. display: none;
  815. }
  816. .carousel-control {
  817. background: none;
  818. span.glyphicon {
  819. top: 50px;
  820. }
  821. }
  822. .item {
  823. .carousel-caption {
  824. top: 20px;
  825. color: $courant;
  826. @include text-shadow(none);
  827. padding: 0px;
  828. img {
  829. display: block;
  830. $width-logo-carousel: 150px;
  831. width: $width-logo-carousel;
  832. height: auto;
  833. margin: 0px auto 15px auto;
  834. }
  835. .producer-testimony {
  836. margin-bottom: 12px;
  837. }
  838. .producer-details {
  839. font-style: italic;
  840. }
  841. }
  842. }
  843. }
  844. }
  845. #content #mentions {
  846. padding-top: 20px;
  847. div.content {
  848. width: 60%;
  849. font-size: 90%;
  850. }
  851. p {
  852. padding-bottom: 15px;
  853. }
  854. h2 {
  855. color: black;
  856. padding-bottom: 40px;
  857. font-size: 25px;
  858. line-height: 35px;
  859. font-family: 'highvoltageregular';
  860. }
  861. h3 {
  862. font-family: "highvoltageregular";
  863. font-size: 18px;
  864. padding-bottom: 12px;
  865. margin-top: 10px;
  866. color: black;
  867. }
  868. }
  869. .mentions {
  870. #main, body {
  871. //background-color: white ;
  872. }
  873. }
  874. .vegas-loading {
  875. display: none;
  876. }
  877. #profil-user {
  878. .form-group.field-user-no_mail label {
  879. font-weight: normal;
  880. }
  881. .form-group label {
  882. cursor: pointer;
  883. }
  884. #mails-days-distribution {
  885. .form-group {
  886. float: left;
  887. margin-right: 15px;
  888. label {
  889. font-weight: normal;
  890. }
  891. }
  892. }
  893. p.strong {
  894. font-weight: bold;
  895. }
  896. h2 {
  897. text-transform: none;
  898. font-size: 25px;
  899. &:first-child {
  900. margin-top: 0px;
  901. }
  902. }
  903. }
  904. /* login */
  905. $max-width-form: 500px;
  906. .back-white {
  907. background-color: white;
  908. padding: 30px;
  909. @include border-radius(5px) ;
  910. }
  911. .site-login {
  912. .col-lg-5 {
  913. margin: 0px auto;
  914. float: none;
  915. max-width: $max-width-form;
  916. @extend .back-white ;
  917. }
  918. }
  919. /* signup */
  920. .modal-backdrop {
  921. z-index: 999;
  922. }
  923. .site-signup {
  924. .col-lg-5 {
  925. margin: 0px auto;
  926. float: none;
  927. max-width: $max-width-form;
  928. @extend .back-white ;
  929. }
  930. }
  931. #modal-cgv {
  932. .modal-body {
  933. h2 {
  934. margin-bottom: 5px;
  935. padding-bottom: 0px;
  936. font-size: 20px;
  937. margin-top: 0px;
  938. }
  939. }
  940. }
  941. #form-signup {
  942. #user-producer {
  943. margin-bottom: 30px;
  944. }
  945. #signupform-id_producer {
  946. option:disabled {
  947. font-weight: bold;
  948. color: black;
  949. }
  950. }
  951. #champs-producer {
  952. display: none;
  953. }
  954. #buttons-signup {
  955. margin-top: 30px;
  956. }
  957. .field-signupform-is_test {
  958. display: none;
  959. }
  960. }
  961. #col-left {
  962. padding: 0px;
  963. z-index: 15;
  964. .affix {
  965. width: 25%;
  966. border-right: solid 1px #e0e0e0;
  967. background-color: #FAFAFA;
  968. height: 100%;
  969. }
  970. #link-home {
  971. text-decoration: none;
  972. font-size: 22px;
  973. color: black;
  974. display: block;
  975. padding: 10px;
  976. background-color: $color2;
  977. img {
  978. height: 50px;
  979. margin-bottom: 5px;
  980. float: left;
  981. }
  982. .text {
  983. padding-left: 62px;
  984. .bap {
  985. font-family: "comfortaalight";
  986. font-size: 24px;
  987. }
  988. .plateforme {
  989. font-size: 17px;
  990. font-family: "myriadpro-light";
  991. color: $color1;
  992. }
  993. }
  994. }
  995. h2 {
  996. font-family: 'myriadpro-regular';
  997. color: black;
  998. margin: 0px;
  999. margin-bottom: 10px;
  1000. padding: 15px 0px 5px 15px;
  1001. }
  1002. #links {
  1003. background-color: white;
  1004. margin-bottom: 20px;
  1005. ul {
  1006. li {
  1007. a {
  1008. text-align: center;
  1009. border-right: solid 1px #e0e0e0;
  1010. &:hover {
  1011. background-color: $color1;
  1012. color: white;
  1013. }
  1014. }
  1015. &:last-child a {
  1016. border-right: 0px none;
  1017. }
  1018. }
  1019. }
  1020. }
  1021. #producers nav.nav-producers {
  1022. ul {
  1023. li {
  1024. a {
  1025. padding-left: 50px;
  1026. height: 40px;
  1027. //margin-right: 20px ;
  1028. }
  1029. &.active a {
  1030. background-color: $color1;
  1031. position: relative;
  1032. color: white;
  1033. &:after {
  1034. right: -40px;
  1035. top: 50%;
  1036. border: solid transparent;
  1037. content: " ";
  1038. height: 0;
  1039. width: 0;
  1040. position: absolute;
  1041. pointer-events: none;
  1042. border-color: rgba(187, 135, 87, 0);
  1043. border-left-color: #BB8757;
  1044. border-width: 20px;
  1045. margin-top: -20px;
  1046. }
  1047. }
  1048. }
  1049. }
  1050. }
  1051. ul {
  1052. list-style-type: none;
  1053. margin: 0px;
  1054. padding: 0px;
  1055. li {
  1056. margin: 0px;
  1057. padding: 0px;
  1058. a {
  1059. text-decoration: none;
  1060. font-family: 'comfortaaregular';
  1061. font-family: 'myriadpro-regular';
  1062. font-size: 15px;
  1063. padding: 10px;
  1064. border-bottom: solid 1px #e0e0e0;
  1065. display: block;
  1066. color: black;
  1067. span.name, span.wording {
  1068. display: none;
  1069. }
  1070. }
  1071. }
  1072. }
  1073. p {
  1074. padding: 20px;
  1075. padding-top: 0px;
  1076. color: gray;
  1077. }
  1078. }
  1079. #content {
  1080. .header-title {
  1081. height: 79px;
  1082. padding: 20px 20px;
  1083. position: fixed;
  1084. top: 0px;
  1085. width: 100%;
  1086. background-color: white;
  1087. z-index: 10;
  1088. box-sizing: border-box;
  1089. border-bottom: solid 1px #e0e0e0;
  1090. @include box-shadow(0px 0px 8px #e0e0e0) ;
  1091. h1 {
  1092. color: black;
  1093. font-family: 'myriadpro-regular';
  1094. margin: 0px;
  1095. font-size: 25px;
  1096. text-transform: uppercase;
  1097. }
  1098. h2 {
  1099. color: gray;
  1100. text-transform: none;
  1101. font-size: 15px;
  1102. margin-top: 3px;
  1103. line-height: 20px;
  1104. }
  1105. }
  1106. }
  1107. .header-producer {
  1108. z-index: 1;
  1109. #block-main-img {
  1110. height: 144px;
  1111. overflow: hidden;
  1112. #main-img {
  1113. width: 100%;
  1114. height: auto;
  1115. border: 0px none;
  1116. padding: 0px;
  1117. @include border-radius(0px) ;
  1118. }
  1119. }
  1120. h1 {
  1121. font-family: 'comfortaaregular';
  1122. text-align: center;
  1123. position: absolute;
  1124. top: 30px;
  1125. left: 40px;
  1126. span {
  1127. background-color: rgba(255, 255, 255, 0.8);
  1128. //background-color: rgba(187, 135, 87, 0.6) ;
  1129. //color: white ;
  1130. padding: 10px 30px;
  1131. border: dotted 1px black;
  1132. //@include border-radius(20px) ;
  1133. }
  1134. }
  1135. }
  1136. nav#menu-producer {
  1137. border-bottom: solid 1px #e0e0e0;
  1138. //background-color: #FAFAFA ;
  1139. ul {
  1140. li {
  1141. padding: 0px;
  1142. margin: 0px;
  1143. a {
  1144. border-right: solid 1px #e0e0e0;
  1145. text-decoration: none;
  1146. @include border-radius(0px) ;
  1147. &:hover {
  1148. background-color: $color1;
  1149. color: white;
  1150. }
  1151. }
  1152. }
  1153. }
  1154. }
  1155. .site-contact {
  1156. .col-lg-5 {
  1157. margin: 0px auto;
  1158. float: none;
  1159. }
  1160. .form-group.submit {
  1161. text-align: center;
  1162. }
  1163. }
  1164. #site-prices {
  1165. .panel {
  1166. p {
  1167. padding-bottom: 0px;
  1168. }
  1169. }
  1170. }
  1171. #contact-form {
  1172. .field-contactform-istest {
  1173. display: none;
  1174. }
  1175. }
  1176. @import "_order_system.scss";
  1177. @import "_responsive.scss";