選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

screen.scss 24KB

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