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.

1461 lines
24KB

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