Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

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