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.

1423 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. .panel-heading {
  497. //background-color: $color1;
  498. h2 {
  499. //color: white;
  500. }
  501. }
  502. .hook {
  503. font-family: 'capsuularegular';
  504. font-size: 23px;
  505. line-height: 28px;
  506. margin-top: 10px;
  507. margin-bottom: 30px;
  508. }
  509. }
  510. }
  511. #row-users-producers,
  512. #row-functionalities-rates {
  513. div.producer, div.users {
  514. }
  515. div.producer {
  516. .btn-primary {
  517. //margin-bottom: 5px ;
  518. }
  519. }
  520. .panel-body {
  521. //font-family: 'capsuularegular';
  522. //color: black;
  523. //font-size: 20px;
  524. //line-height: 26px;
  525. }
  526. p {
  527. padding-bottom: 4px;
  528. }
  529. }
  530. #row-functionalities-rates {
  531. .block {
  532. position: relative;
  533. margin-bottom: 25px;
  534. padding-left: 70px;
  535. min-height: 50px;
  536. .glyphicon {
  537. font-size: 40px;
  538. position: absolute;
  539. left: 0px;
  540. top: 0px;
  541. }
  542. p {
  543. font-family: 'capsuularegular';
  544. font-size: 18px;
  545. }
  546. a {
  547. text-decoration: none;
  548. color: black;
  549. &:hover {
  550. color: $color1;
  551. }
  552. }
  553. }
  554. .block-points-sale-products {
  555. img {
  556. width: 40px;
  557. }
  558. }
  559. }
  560. #block-services {
  561. .panel-body {
  562. .panel-body {
  563. padding-bottom: 0px;
  564. h3 {
  565. margin-top: 0px;
  566. }
  567. }
  568. }
  569. }
  570. #block-rates {
  571. table {
  572. th {
  573. //font-family: 'capsuularegular';
  574. font-weight: bold;
  575. font-size: 14px;
  576. }
  577. }
  578. }
  579. #btn-demo {
  580. &:hover, &:focus, &:active {
  581. color: black;
  582. }
  583. }
  584. #modal-prices {
  585. }
  586. }
  587. #content #contact {
  588. display: none;
  589. .icon {
  590. width: 55px;
  591. top: -15px;
  592. margin-left: -70px;
  593. }
  594. .form-control:focus {
  595. /*@include box-shadow(0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px $jaune) ;
  596. border-color: $jaune ;*/
  597. }
  598. .form-group {
  599. text-align: center;
  600. }
  601. .img-right {
  602. float: right;
  603. img {
  604. width: 300px;
  605. }
  606. }
  607. }
  608. #bookmarked-producers {
  609. padding: 0px;
  610. padding-top: 15px;
  611. padding-bottom: 7px;
  612. margin: 0px;
  613. border-bottom: solid 1px #e0e0e0;
  614. background-color: white;
  615. h2 {
  616. float: left;
  617. font-family: 'highvoltageregular';
  618. color: $courant;
  619. text-align: left;
  620. font-size: 16px;
  621. margin: 0px;
  622. padding: 0px;
  623. color: $courant;
  624. }
  625. #producers {
  626. position: relative;
  627. top: -5px;
  628. left: 5px;
  629. }
  630. #discover {
  631. padding-bottom: 20px;
  632. text-align: center;
  633. p {
  634. padding-bottom: 0px;
  635. color: $color2;
  636. }
  637. .btn {
  638. background-color: $color2;
  639. color: $color1;
  640. border: solid 1px $color2;
  641. }
  642. }
  643. }
  644. #footer {
  645. position: absolute;
  646. bottom: 0px;
  647. width: 100%;
  648. text-align: left;
  649. padding-top: 22px;
  650. padding-bottom: 16px;
  651. background-color: #333;
  652. border-top: 0px none;
  653. color: white;
  654. a {
  655. color: white;
  656. font-family: 'capsuularegular';
  657. font-size: 18px;
  658. text-decoration: none;
  659. padding-left: 10px;
  660. padding-right: 10px;
  661. border-right: solid 1px white;
  662. border: 0px none;
  663. &:hover {
  664. text-decoration: underline;
  665. }
  666. &:last-child {
  667. border: 0px none;
  668. }
  669. }
  670. }
  671. .site-producers {
  672. #producers-list {
  673. #producer-search {
  674. padding-bottom: 15px;
  675. }
  676. .alert-no-results {
  677. display: none;
  678. }
  679. .panel {
  680. border: solid 1px #e0e0e0;
  681. @include border-radius(8px);
  682. .panel-body {
  683. border: 0px none;
  684. @include border-radius(8px);
  685. h2 {
  686. font-family: 'capsuularegular';
  687. font-weight: bold;
  688. font-size: 27px;
  689. text-transform: none;
  690. margin-top: 0px;
  691. margin-bottom: 5px;
  692. padding-bottom: 0px;
  693. }
  694. p {
  695. padding-bottom: 0px;
  696. }
  697. .producer-type {
  698. text-transform: uppercase;
  699. margin-bottom: 10px;
  700. font-size: 14px;
  701. }
  702. .producer-location {
  703. }
  704. }
  705. .panel-footer {
  706. @include border-radius(0px 0px 8px 8px);
  707. border: 0px none;
  708. //text-align: right;
  709. }
  710. .logo {
  711. float: right;
  712. position: relative;
  713. background-color: white;
  714. width: 110px;
  715. height: 110px;
  716. @include border-radius(110px);
  717. border: solid 1px #e0e0e0;
  718. text-align: right;
  719. overflow: hidden;
  720. .img-logo {
  721. position: absolute;
  722. top: 50%;
  723. left: 50%;
  724. transform: translate(-50%, -50%);
  725. max-width: 90px;
  726. max-height: 90px;
  727. }
  728. }
  729. }
  730. }
  731. #producers-map {
  732. height: 750px;
  733. border: solid 1px #e0e0e0;
  734. @include border-radius(8px);
  735. &.fixed {
  736. position: fixed !important;
  737. top: 20px;
  738. width: 300px;
  739. //height: 80%;
  740. height: 750px;
  741. }
  742. a {
  743. text-decoration: none;
  744. }
  745. .popup-producer {
  746. font-size: 14px;
  747. color: #505050;
  748. .name {
  749. font-family: 'capsuularegular';
  750. font-weight: bold;
  751. font-size: 23px;
  752. color: #323232;
  753. }
  754. .type {
  755. text-transform: uppercase;
  756. font-size: 13px;
  757. margin-bottom: 12px;
  758. }
  759. .address {
  760. margin-bottom: 12px;
  761. }
  762. .link {
  763. color: white;
  764. }
  765. }
  766. }
  767. }
  768. #content .site-about {
  769. .panel {
  770. .panel-heading {
  771. h2 {
  772. margin: 0px;
  773. padding: 0px;
  774. font-size: 25px;
  775. }
  776. }
  777. .panel-body {
  778. h2 {
  779. font-size: 20px;
  780. text-transform: none;
  781. margin-bottom: 7px;
  782. padding-bottom: 0px;
  783. margin-top: 0px;
  784. }
  785. p:last-child {
  786. margin-bottom: 0px;
  787. padding-bottom: 5px;
  788. }
  789. }
  790. }
  791. #few-numbers {
  792. .item {
  793. text-align: center;
  794. padding-top: 20px;
  795. padding-bottom: 20px;
  796. .number {
  797. font-family: 'highvoltageregular';
  798. font-weight: bold;
  799. font-size: 35px;
  800. }
  801. .description {
  802. font-size: 16px;
  803. }
  804. .detail {
  805. color: gray;
  806. }
  807. }
  808. }
  809. #carousel-producers-testimonials {
  810. transition: all 0.4s;
  811. .item, .carousel-caption {
  812. transition: all 0.4s;
  813. }
  814. .carousel-indicators {
  815. display: none;
  816. }
  817. .carousel-control {
  818. background: none;
  819. span.glyphicon {
  820. top: 50px;
  821. }
  822. }
  823. .item {
  824. .carousel-caption {
  825. top: 20px;
  826. color: $courant;
  827. @include text-shadow(none);
  828. padding: 0px;
  829. img {
  830. display: block;
  831. $width-logo-carousel: 150px;
  832. width: $width-logo-carousel;
  833. height: auto;
  834. margin: 0px auto 15px auto;
  835. }
  836. .producer-testimony {
  837. margin-bottom: 12px;
  838. }
  839. .producer-details {
  840. font-style: italic;
  841. }
  842. }
  843. }
  844. }
  845. }
  846. #content #mentions {
  847. padding-top: 20px;
  848. div.content {
  849. width: 60%;
  850. font-size: 90%;
  851. }
  852. p {
  853. padding-bottom: 15px;
  854. }
  855. h2 {
  856. color: black;
  857. padding-bottom: 40px;
  858. font-size: 25px;
  859. line-height: 35px;
  860. font-family: 'highvoltageregular';
  861. }
  862. h3 {
  863. font-family: "highvoltageregular";
  864. font-size: 18px;
  865. padding-bottom: 12px;
  866. margin-top: 10px;
  867. color: black;
  868. }
  869. }
  870. .mentions {
  871. #main, body {
  872. //background-color: white ;
  873. }
  874. }
  875. .vegas-loading {
  876. display: none;
  877. }
  878. #profil-user {
  879. .form-group.field-user-no_mail label {
  880. font-weight: normal;
  881. }
  882. .form-group label {
  883. cursor: pointer;
  884. }
  885. #mails-days-distribution {
  886. .form-group {
  887. float: left;
  888. margin-right: 15px;
  889. label {
  890. font-weight: normal;
  891. }
  892. }
  893. }
  894. p.strong {
  895. font-weight: bold;
  896. }
  897. h2 {
  898. text-transform: none;
  899. font-size: 25px;
  900. &:first-child {
  901. margin-top: 0px;
  902. }
  903. }
  904. }
  905. /* login */
  906. $max-width-form: 500px;
  907. .back-white {
  908. background-color: white;
  909. padding: 30px;
  910. @include border-radius(5px) ;
  911. }
  912. .site-login {
  913. .col-lg-5 {
  914. margin: 0px auto;
  915. float: none;
  916. max-width: $max-width-form;
  917. @extend .back-white ;
  918. }
  919. }
  920. /* signup */
  921. .modal-backdrop {
  922. z-index: 999;
  923. }
  924. .site-signup {
  925. .col-lg-5 {
  926. margin: 0px auto;
  927. float: none;
  928. max-width: $max-width-form;
  929. @extend .back-white ;
  930. }
  931. }
  932. #modal-cgv {
  933. .modal-body {
  934. h2 {
  935. margin-bottom: 5px;
  936. padding-bottom: 0px;
  937. font-size: 20px;
  938. margin-top: 0px;
  939. }
  940. }
  941. }
  942. #form-signup {
  943. #user-producer {
  944. margin-bottom: 30px;
  945. }
  946. #signupform-id_producer {
  947. option:disabled {
  948. font-weight: bold;
  949. color: black;
  950. }
  951. }
  952. #champs-producer {
  953. display: none;
  954. }
  955. #buttons-signup {
  956. margin-top: 30px;
  957. }
  958. .field-signupform-is_test {
  959. display: none;
  960. }
  961. }
  962. #col-left {
  963. padding: 0px;
  964. z-index: 15;
  965. .affix {
  966. width: 25%;
  967. border-right: solid 1px #e0e0e0;
  968. background-color: #FAFAFA;
  969. height: 100%;
  970. }
  971. #link-home {
  972. text-decoration: none;
  973. font-size: 22px;
  974. color: black;
  975. display: block;
  976. padding: 10px;
  977. background-color: $color2;
  978. img {
  979. height: 50px;
  980. margin-bottom: 5px;
  981. float: left;
  982. }
  983. .text {
  984. padding-left: 62px;
  985. .bap {
  986. font-family: "comfortaalight";
  987. font-size: 24px;
  988. }
  989. .plateforme {
  990. font-size: 17px;
  991. font-family: "myriadpro-light";
  992. color: $color1;
  993. }
  994. }
  995. }
  996. h2 {
  997. font-family: 'myriadpro-regular';
  998. color: black;
  999. margin: 0px;
  1000. margin-bottom: 10px;
  1001. padding: 15px 0px 5px 15px;
  1002. }
  1003. #links {
  1004. background-color: white;
  1005. margin-bottom: 20px;
  1006. ul {
  1007. li {
  1008. a {
  1009. text-align: center;
  1010. border-right: solid 1px #e0e0e0;
  1011. &:hover {
  1012. background-color: $color1;
  1013. color: white;
  1014. }
  1015. }
  1016. &:last-child a {
  1017. border-right: 0px none;
  1018. }
  1019. }
  1020. }
  1021. }
  1022. #producers nav.nav-producers {
  1023. ul {
  1024. li {
  1025. a {
  1026. padding-left: 50px;
  1027. height: 40px;
  1028. //margin-right: 20px ;
  1029. }
  1030. &.active a {
  1031. background-color: $color1;
  1032. position: relative;
  1033. color: white;
  1034. &:after {
  1035. right: -40px;
  1036. top: 50%;
  1037. border: solid transparent;
  1038. content: " ";
  1039. height: 0;
  1040. width: 0;
  1041. position: absolute;
  1042. pointer-events: none;
  1043. border-color: rgba(187, 135, 87, 0);
  1044. border-left-color: #BB8757;
  1045. border-width: 20px;
  1046. margin-top: -20px;
  1047. }
  1048. }
  1049. }
  1050. }
  1051. }
  1052. ul {
  1053. list-style-type: none;
  1054. margin: 0px;
  1055. padding: 0px;
  1056. li {
  1057. margin: 0px;
  1058. padding: 0px;
  1059. a {
  1060. text-decoration: none;
  1061. font-family: 'comfortaaregular';
  1062. font-family: 'myriadpro-regular';
  1063. font-size: 15px;
  1064. padding: 10px;
  1065. border-bottom: solid 1px #e0e0e0;
  1066. display: block;
  1067. color: black;
  1068. span.name, span.wording {
  1069. display: none;
  1070. }
  1071. }
  1072. }
  1073. }
  1074. p {
  1075. padding: 20px;
  1076. padding-top: 0px;
  1077. color: gray;
  1078. }
  1079. }
  1080. #content {
  1081. .header-title {
  1082. height: 79px;
  1083. padding: 20px 20px;
  1084. position: fixed;
  1085. top: 0px;
  1086. width: 100%;
  1087. background-color: white;
  1088. z-index: 10;
  1089. box-sizing: border-box;
  1090. border-bottom: solid 1px #e0e0e0;
  1091. @include box-shadow(0px 0px 8px #e0e0e0) ;
  1092. h1 {
  1093. color: black;
  1094. font-family: 'myriadpro-regular';
  1095. margin: 0px;
  1096. font-size: 25px;
  1097. text-transform: uppercase;
  1098. }
  1099. h2 {
  1100. color: gray;
  1101. text-transform: none;
  1102. font-size: 15px;
  1103. margin-top: 3px;
  1104. line-height: 20px;
  1105. }
  1106. }
  1107. }
  1108. .header-producer {
  1109. z-index: 1;
  1110. #block-main-img {
  1111. height: 144px;
  1112. overflow: hidden;
  1113. #main-img {
  1114. width: 100%;
  1115. height: auto;
  1116. border: 0px none;
  1117. padding: 0px;
  1118. @include border-radius(0px) ;
  1119. }
  1120. }
  1121. h1 {
  1122. font-family: 'comfortaaregular';
  1123. text-align: center;
  1124. position: absolute;
  1125. top: 30px;
  1126. left: 40px;
  1127. span {
  1128. background-color: rgba(255, 255, 255, 0.8);
  1129. //background-color: rgba(187, 135, 87, 0.6) ;
  1130. //color: white ;
  1131. padding: 10px 30px;
  1132. border: dotted 1px black;
  1133. //@include border-radius(20px) ;
  1134. }
  1135. }
  1136. }
  1137. nav#menu-producer {
  1138. border-bottom: solid 1px #e0e0e0;
  1139. //background-color: #FAFAFA ;
  1140. ul {
  1141. li {
  1142. padding: 0px;
  1143. margin: 0px;
  1144. a {
  1145. border-right: solid 1px #e0e0e0;
  1146. text-decoration: none;
  1147. @include border-radius(0px) ;
  1148. &:hover {
  1149. background-color: $color1;
  1150. color: white;
  1151. }
  1152. }
  1153. }
  1154. }
  1155. }
  1156. .site-contact {
  1157. .col-lg-5 {
  1158. margin: 0px auto;
  1159. float: none;
  1160. }
  1161. .form-group.submit {
  1162. text-align: center;
  1163. }
  1164. }
  1165. #site-prices {
  1166. .panel {
  1167. p {
  1168. padding-bottom: 0px;
  1169. }
  1170. }
  1171. }
  1172. #contact-form {
  1173. .field-contactform-istest {
  1174. display: none;
  1175. }
  1176. }
  1177. @import "_order_system.scss";
  1178. @import "_responsive.scss";