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

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