styles.less 55 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373
  1. /**
  2. * Primary Drupal Styles
  3. * Author: g-u-i.net
  4. */
  5. @import "../components/bootstrap/less/bootstrap.less";
  6. @import "../components/gui/gui.less";
  7. @import "fonts.less";
  8. @import "layout.less";
  9. #root{
  10. // background: #fff url('../img/beta-2.png') no-repeat 0px 0px;
  11. }
  12. .shadowBtn(){
  13. .drop-shadow(0, 0, 5px, 0.4);
  14. .transition-simply-prefix(~"box-shadow 0.3s ease-out");
  15. &:hover, &:focus{
  16. .drop-shadow(0, 0, 5px, 0.7);
  17. }
  18. &:active{
  19. .transition-simply-prefix(~"box-shadow 0s ease-out");
  20. .drop-shadow(0, 0, 5px, 0.4);
  21. }
  22. }
  23. .shadowTextBtnWhite(){
  24. cursor:pointer;
  25. text-shadow:0 0 2px rgba(255, 255, 255, 0.2);
  26. .transition-simply-prefix(~"text-shadow 0.3s ease-out");
  27. &:hover, &:focus{
  28. text-shadow:0 0 3px rgba(255, 255, 255, 1);
  29. }
  30. &:active{
  31. .transition-simply-prefix(~"text-shadow 0s ease-out");
  32. text-shadow:0 0 2px rgba(255, 255, 255, 0.2);
  33. }
  34. }
  35. .shadowTextBtnBlack(){
  36. cursor:pointer;
  37. text-shadow:0 0 2px rgba(0, 0, 0, 0.2);
  38. .transition-simply-prefix(~"text-shadow 0.2s ease-out");
  39. &:hover, &:focus{
  40. text-shadow:0 0 2px rgba(0, 0, 0, 0.8);
  41. }
  42. &:active{
  43. .transition-simply-prefix(~"text-shadow 0s ease-out");
  44. text-shadow:0 0 2px rgba(0, 0, 0, 0.2);
  45. }
  46. }
  47. .horihoverswitch(){
  48. position:relative; z-index:1; .bgc(#fff);
  49. figure{
  50. position: absolute; top:0; left:0;
  51. &:first-child{ position:relative; z-index:1; }
  52. }
  53. }
  54. .layer(){
  55. position:absolute; width:100%; height:100%; top:0; left:0;
  56. }
  57. .op-visible{
  58. visibility:visible;
  59. .csstransitions &{
  60. .opacity(1);
  61. .transition-simply-prefix(~"opacity 0.3s ease-out");
  62. }
  63. }
  64. .op-hidden{
  65. visibility:hidden;
  66. >*{
  67. margin-top:-100000px;
  68. }
  69. .csstransition &{
  70. .opacity(0);
  71. .transition-simply-prefix(~"visibility 0s 0.3s, opacity 0.3s ease-out");
  72. >*{
  73. .transition-simply-prefix(~"margin-top 0s 0.3s");
  74. }
  75. }
  76. }
  77. .bouton(){
  78. .16; font-weight:bold;
  79. .p(0.1em 0.3em 0.2em); .rounded(0.3em);
  80. border: 2px solid #ccc; .bgc(#ccc); color:#4D4D4D; // blanc/bleu
  81. .shadowTextBtnWhite();
  82. text-align: center; text-decoration: none;
  83. }
  84. .bouton-bleu(){
  85. .bouton();
  86. .shadowTextBtnBlack();
  87. border-color:#69CDCF; .bgc(#69CDCF); color:#fff;
  88. }
  89. .bouton-vert(){
  90. .bouton();
  91. .shadowTextBtnBlack();
  92. border-color:#E6DE1C; .bgc(#E6DE1C); color:#fff;
  93. }
  94. /** colomnized() */
  95. .columnized(@padding){
  96. .p(@padding);
  97. &.columnized{
  98. .p(0);
  99. .column>*{.p(@padding);}
  100. .transition-simply-prefix(~"margin-left 0.3s ease-out");
  101. .column-switcher{
  102. display:inline-block; .rounded(3px); color:#fff; background-color: #3e3e3e; vertical-align:middle;
  103. .700; .22; .p(0.05em 0.15em 0.2em 0.2em); line-height:0.5; .regular;
  104. &.prev-column{cursor: w-resize;}
  105. &.next-column{cursor: e-resize;}
  106. }
  107. }
  108. }
  109. .bgcWhite(){
  110. .bgca(255, 255, 255, 0.8);
  111. text-shadow:0 0 4px rgba(255, 255, 255, 0.4);
  112. .transition-simply-prefix(~"background-color 0.2s ease-out, text-shadow 0.2s ease-out");
  113. }
  114. .bgcBlack(){
  115. .bgca(0, 0, 0, 0.7);
  116. text-shadow:0 0 4px rgba(0, 0, 0, 0.4);
  117. .transition-simply-prefix(~"background-color 0.2s ease-out, text-shadow 0.2s ease-out");
  118. }
  119. // .bgcWhiteParentHover(){
  120. // .bgca(255, 255, 255, 0.2);
  121. // text-shadow:0 0 4px rgba(255, 255, 255, 0.9);
  122. // &:hover{
  123. // .bgcWhite();
  124. // }
  125. // }
  126. @headerheight:45px;
  127. @headerpaddingtop:5px;
  128. @headerpaddingbottom:10px;
  129. @headerouterheight:@headerheight+@headerpaddingtop+@headerpaddingbottom;
  130. /** HEADER */
  131. #header{
  132. padding-top:@headerpaddingtop;
  133. padding-bottom:@headerpaddingbottom;
  134. height:@headerheight;
  135. // position:relative;
  136. // .drop-shadow(0, 3px, 2px, 0.4); margin-bottom:5px;
  137. a{&, &:active, &:visited{color:#000;}}
  138. // .logo, #header-blocks{.inlineblock(); vertical-align:middle;}
  139. .logo{
  140. //width:210px; //padding-left:5px; //margin-left:50px;
  141. .inlineblock;
  142. h1{
  143. margin:0; .36; .inlineblock(); vertical-align: baseline; position:relative; line-height:1.25;
  144. a:hover{text-decoration: none ;}
  145. }
  146. span.beta{
  147. line-height:1; letter-spacing: 0.1em;
  148. color:rgb(0,0,122); .12;
  149. position:absolute; left:0; .pl(0); .ml(0);
  150. }
  151. span.slogan{
  152. .14;
  153. margin-top:-3px;
  154. margin-left:-0.5em;
  155. .900;
  156. @media @max-980{display:none;}
  157. .ie8 &{position: absolute; margin-top:22px;}
  158. }
  159. }
  160. #header-blocks{
  161. //position:absolute; right:0; bottom:0;
  162. .pt(17px);
  163. float:right;
  164. text-align:right;
  165. text-transform: capitalize;
  166. >.region{
  167. .inlineblock();vertical-align:middle;
  168. .pr(1em); .mr(1em);
  169. @media @max-768{ .pr(0.3em); .mr(0.3em); }
  170. border-right: 1px solid #707070;
  171. &:last-child{border:none; .p(0); .m(0);}
  172. }
  173. .block{
  174. .inlineblock(); vertical-align:middle;
  175. h2{.12; .m(0); line-height: 1.2; font-weight: normal; }
  176. &:not(:last-child){
  177. .pr(0.8em); @media @max-1200{ .pr(0.3em); }
  178. }
  179. }
  180. #block-user-login{
  181. .12; text-align:left; position:relative;
  182. h2{
  183. .pr(5px);
  184. // .icon-user;
  185. i{ vertical-align: text-bottom; .m(0 2px 2px 0);}
  186. }
  187. form#user-login-form{
  188. position:absolute; overflow:hidden; right:0; .m(0);
  189. height:0;
  190. .transition-simply-prefix(~"height 0.3s ease-out");
  191. &>div{
  192. .p(5px); .m(5px);
  193. background-color: #e6e6e6; .rounded(5px); .drop-shadow(0, 0, 5px, 0.2);
  194. }
  195. .form-item{.m(0); .pb(5px);}
  196. label,input{.m(0);.10;}
  197. // label{width:30%;}
  198. input.form-text{width:150px;}
  199. #edit-actions{
  200. .m(5px 0); .p(0); .bgc(transparent); text-align: right;
  201. input.form-submit{
  202. .12; .p(10px);
  203. }
  204. }
  205. div.newpass a{
  206. .12; color:#686868;
  207. }
  208. // div.register a{
  209. // display:block; .p(10px 5px); background-color: #ccf718; font-weight:bold; text-align: center; .14;
  210. // }
  211. }
  212. html.no-touch &:hover, &.hovered{
  213. form#user-login-form{
  214. height:300px;
  215. &>div{
  216. }
  217. z-index:@header-z-index;
  218. }
  219. }
  220. @media @max-480{
  221. span.login{display:none;}
  222. }
  223. }
  224. #block-materio-flag-materio-flag-mylists-nav{
  225. position:relative;
  226. h2{.m(0); .12; line-height:1.1;}// .700;
  227. // h2, section.mylists{.inlineblock();}
  228. section.mylists{
  229. position:absolute; z-index:20; .bgca(255, 255, 255, 0.9); min-width:100%; .m(0 0 0 -5px);
  230. .rounded(3px); .drop-shadow(-2px, 2px, 5px, 0.2);
  231. .ie8 &{background:#FFF;}
  232. ul{.m(0);}
  233. li{
  234. list-style: none; .12; .700; .p(0 10px); text-align: left; width:200px;
  235. height:0; overflow:hidden; .transition-simply-prefix(~"height 0.3s ease-out");
  236. // height:15px; .p(3px 10px);
  237. a, span.preview{white-space:nowrap; cursor:pointer;}
  238. a.open-list{max-width:150px;}
  239. span.count{.300; .p(0 5px);}
  240. span.preview, a.edit-list{.pr(5px);}
  241. .no-touch &:not(:hover) {
  242. span.preview, a.edit-list{.op-hidden;}
  243. }
  244. }
  245. }
  246. &:hover{
  247. section.mylists{
  248. .pb(5px);
  249. li{height:15px; .p(3px 10px); }
  250. }
  251. }
  252. h2{
  253. i{ vertical-align: text-bottom; .m(0 2px 2px 0);}
  254. @media @min-980{ i{display: none;} }
  255. @media @max-980{ span.menu-title{display:none;} }
  256. }
  257. }
  258. #block-ajax-register-ajax-register-block{
  259. .12; text-transform: lowercase;
  260. }
  261. #block-logintoboggan-logintoboggan-logged-in{
  262. .12;
  263. i{
  264. vertical-align: text-bottom;
  265. .m(0 2px 1px 0);
  266. }
  267. a span.account{text-transform: lowercase;}
  268. a span.logout{display:none; .ml(5px); }
  269. .icon-off{.m(0 0.5em 0 0.5em);}
  270. // @media @min-768{ .icon-off{display: none;} }
  271. // @media @max-768{ a span.logout{display:none;} }
  272. @media @max-768{a span.account{display:none;}}
  273. }
  274. #headerblock-right{
  275. .block{
  276. .inlineblock; vertical-align: middle; padding:0;
  277. &:first-child{.p(0);}
  278. }
  279. }
  280. #block-locale-language{
  281. .ml(1em);
  282. // border-left: 1px solid #707070;
  283. ul,li{
  284. margin:0;padding:0;list-style-type: none; .12; line-height: 1;
  285. &.active{display:none;}
  286. }
  287. .ie8 &{padding-top:5px;}
  288. }
  289. // #block-menu-menu-about{
  290. // position:relative;
  291. // ul.menu{
  292. // position:absolute; .p(0 5px 5px 5px); .m(0); width:100px; display:none; right:0; text-align: right;
  293. // background-color: #e6e6e6; .rounded(5px);
  294. // li{
  295. // height:0;
  296. // overflow:hidden; list-style-type: none;
  297. // .transition-simply-prefix(~"height 0.3s ease-out");
  298. // a{
  299. // display:block; width:100%; padding:2px 5px; .12;
  300. // }
  301. // }
  302. // }
  303. // &:hover{
  304. // ul.menu{
  305. // display:block;
  306. // li{height:25px;}
  307. // }
  308. // }
  309. // }
  310. #block-menu-menu-top-menu{
  311. h2{
  312. .ie8 &{display:none;}
  313. i{ vertical-align: text-bottom; .m(0 0 2px 0);}
  314. }
  315. ul.menu, li{
  316. .12; list-style: none;
  317. .ie8 &{display: inline;}
  318. }
  319. // menu en ligne
  320. @media @min-768{
  321. h2{display:none;}
  322. ul.menu, li{
  323. .inlineblock; vertical-align: middle;
  324. .p(0); .m(0);
  325. }
  326. a{.p(0 0.5em 0 0);}
  327. }
  328. //menu deroulant
  329. @media @max-768{
  330. position:relative;
  331. h2 .menu-title{display: none;}
  332. .menu-wrapper{
  333. position:absolute; width:150px; display:none; right:0; .pt(5px);
  334. ul.menu{
  335. background-color: #e6e6e6; .rounded(5px); .p(0 5px 5px 5px); .m(0); text-align: right;
  336. li{
  337. height:0;
  338. overflow:hidden;
  339. .transition-simply-prefix(~"height 0.3s ease-out");
  340. a{
  341. display:block; width:100%; padding:2px 5px; .12;
  342. }
  343. }
  344. }
  345. }
  346. html.no-touch &:hover, &.hovered{
  347. z-index:@header-z-index;
  348. .menu-wrapper{
  349. display:block;
  350. ul.menu{li{height:25px;}}
  351. }
  352. }
  353. }
  354. }
  355. #block-materio-user-old-database-link{
  356. a{.12;}
  357. }
  358. #block-materio-user-front-link{
  359. a{.12;}
  360. i{ vertical-align: text-bottom; .m(0 2px 2px 0);}
  361. span.text{ display:none; }
  362. }
  363. }
  364. }
  365. #utilities{
  366. margin-top:@headerouterheight;
  367. .not-logged-in &{ overflow:hidden; }
  368. &.closed{
  369. .tabs, .node-didactique{display:none;} height:0;
  370. }
  371. }
  372. #highlighted{
  373. .rounded(5px);
  374. .drop-shadow(0, 0, 6px, 0.6);
  375. .p(0.5em);
  376. position:relative;
  377. @media @min-768{
  378. .m(20px 0 6px);
  379. .block{ .inlineblock; vertical-align: top; }
  380. .block-materio-didactique{
  381. width:65%;
  382. .side{
  383. .inlineblock(); vertical-align: top;
  384. position:relative; //height:100%;
  385. }
  386. .group-sideleft{ width:65%; }
  387. .group-sideright{ width:30%; }
  388. .field-name-title-field{.24;}
  389. // .field-name-field-visuel{}
  390. .node.emvideo{
  391. .group-sideleft, .group-sideright{ width:47%; }
  392. .group-sideleft{.mr(2%);}
  393. // .field-name-field-visuel{display:none;}
  394. }
  395. }
  396. #block-materio-user-user-register{
  397. width:30%;.p(5px); height:290px;
  398. }
  399. }
  400. @media @min-480{
  401. .block-materio-didactique{
  402. .side{.inlineblock(); vertical-align: top;}
  403. }
  404. }
  405. @media @max-768{
  406. .m(10px 0 6px);
  407. .block-materio-didactique{
  408. .group-sideleft, .group-sideright{ width:100%; }
  409. .field-name-title-field{ .20; cursor:pointer; }
  410. .node-didactique:not(:first-child){
  411. .field-name-title-field{ font-weight:normal; &:before{content:"- ";}}
  412. }
  413. html.js & .node-didactique{
  414. height:auto;
  415. height:25px; overflow: hidden;
  416. &.opened{height:auto;}
  417. }
  418. }
  419. }
  420. @media @480-768{
  421. .block-materio-didactique{
  422. // .pt(150px);
  423. .group-sideleft{ width:50%; }
  424. .group-sideright{ width:50%; }
  425. }
  426. }
  427. .oldie &{
  428. .block{.inlineblock;}
  429. }
  430. .block-materio-didactique{
  431. // .ie8 &{max-width:850px; border: 1px solid #C6C6C6;}
  432. .node-didactique{
  433. .14; .bgc(#fff); //.p(5px);
  434. .m(0 auto);
  435. // .ie8 &{max-width:750px; margin-left:15px; margin-top:10px;}
  436. .side{position:relative;}
  437. .field-name-title-field{ .900; .italic; padding:5px 0;}
  438. .field-name-field-visuel{
  439. text-align: center;
  440. figure, img{display:inline;}
  441. }
  442. &.emvideo{
  443. .field-name-field-visuel{display:none;}
  444. }
  445. // .field-name-field-emvideo{
  446. // a{
  447. // display:block; width:100%; height:100%;
  448. // background: transparent url(../img/vimeo-play-btn.png) no-repeat center center;
  449. // &:hover{background-image: url(../img/vimeo-play-btn-hover.png);}
  450. // img{max-width:100%;}
  451. .ie8 &{.player{display:none;}}
  452. // }
  453. // }
  454. }
  455. html.js &{
  456. position:relative;
  457. overflow: hidden;
  458. .slides{
  459. height:270px; .m(0); position:relative; width:100%; overflow:hidden;
  460. .node-didactique{ .layer(); }
  461. .field-name-title-field{ height:30px;}
  462. .group-column-wrapper{
  463. height:240px;
  464. .side{ height:100%; }
  465. .field-name-field-emvideo{
  466. @r:0.5625;
  467. @media @max-480 { @w:290px; width:@w; height:@w*@r; }
  468. @media @480-768 { @w:216px; width:@w; height:@w*@r; }
  469. @media @768-980 { @w:216px; width:@w; height:@w*@r; }
  470. @media @980-1200 { @w:280px; width:@w; height:@w*@r; }
  471. @media @min-1200 { @w:340px; width:@w; height:@w*@r; }
  472. *{height:100%; width:100%;}
  473. }
  474. }
  475. }
  476. .tabs{
  477. height:30px; .m(0); text-align:left;
  478. >*{
  479. .inlineblock(); vertical-align: top ; padding:5px 10px; .12; cursor:pointer; color:#bfbfbf;
  480. &:hover, &:focus, &.active{color:#3f3f3f;}
  481. }
  482. }
  483. }
  484. }
  485. }
  486. /** block register */
  487. #block-materio-user-user-register, #block-materio-user-user-createaccount{
  488. min-height:120px; .p(5px);
  489. background: transparent url('../img/register-block.png') no-repeat 100% 90%;
  490. .ie8 &{max-width:250px; float:right; background-image:none;}
  491. h2, h3{.900; .italic; padding:5px 0; .m(0); line-height: 1; .bgc(#fff); .inlineblock(); min-width:50%;}
  492. h2{.24;} h3{.16;}
  493. form{.m(0); .bgca(255, 255, 255, 0.7); .pb(5px); .inlineblock(); }
  494. .form-item, .form-wrapper{
  495. .m(0); .inlineblock; vertical-align: middle; position:relative;
  496. }
  497. #edit-account{.mr(5px);}
  498. input.form-text{ .12; .rounded(5px); .mb(4px);.ie8 &{margin-right:5px;}}
  499. .form-item-mail input.form-text, .form-item-name input.form-text{ width:11em;}
  500. .form-item-pass input.form-text{ width:7em;}
  501. #edit-mail-check{
  502. position:absolute; bottom:100%; z-index:9999; background-image: none;
  503. height:auto; //width:90%;
  504. .p(5px); .rounded(5px); .mb(10px);
  505. .11; background-color: #fff;
  506. .drop-shadow(0, 0, 5px, 0.6);
  507. .transition-simply-prefix(~"bottom 0.1s ease-out");
  508. &.error{
  509. background-color: #f3968d;
  510. // border: 2px solid #f30002;
  511. color:#fff;
  512. }
  513. &.ok{ display:none; }
  514. }
  515. .form-submit{
  516. //border: 2px solid #69CDCF; .bgc(#69CDCF); color:#FF7400; // orange/bleu
  517. .16; .p(0.1em 0.6em 0.2em); .rounded(0.3em);
  518. font-weight:bold;
  519. .mb(4px);
  520. }
  521. .form-item-termsofservices, #edit-field-newsletter{
  522. .mb(0); display:block; line-height: 1;
  523. &>*{ .inlineblock; vertical-align: middle; .m(0); }
  524. label{ .10; background-color: #fff; .rounded(3px); }
  525. }
  526. #user-register-form{
  527. .form-submit{
  528. border: 2px solid #69CDCF; .bgc(#69CDCF); color:#fff; // blanc/bleu
  529. .shadowTextBtnBlack();
  530. &[disabled]{
  531. .bgc(#ddd); border: 2px solid #ddd;
  532. }
  533. }
  534. }
  535. #user-login{
  536. .form-submit{
  537. border: 2px solid #E6DE1C; .bgc(#E6DE1C); color:#fff; // noire/jaune
  538. .shadowTextBtnBlack();
  539. }
  540. }
  541. #edit-simplenews{
  542. .pt(0.5em);
  543. .fieldset-description{
  544. .12;
  545. }
  546. .form-checkboxes{
  547. .form-item{
  548. display:block;
  549. label{.12;}
  550. }
  551. }
  552. }
  553. a.join{
  554. // .inlineblock();
  555. display:block;
  556. // .m(10px 0);
  557. width:5em;
  558. .16; .p(0.1em 0.3em 0.2em); .rounded(0.3em);
  559. font-weight:bold;
  560. border: 2px solid #69CDCF; .bgc(#69CDCF); color:#fff; // blanc/bleu
  561. .shadowTextBtnBlack();
  562. text-align: center; text-decoration: none;
  563. }
  564. @media @max-480{
  565. background-position: 160% 50%;
  566. .form-item-mail input.form-text, .form-item-name input.form-text{ width:7em;}
  567. }
  568. @media @max-768{
  569. min-height:60px; .p(15px 0);
  570. #user-login, >h3:first-child, >h3 span{ display:none; }
  571. }
  572. .message-error{
  573. color:#b94a48; .12;
  574. }
  575. .modal-content &{
  576. .p(0.5em 0.5em 5em 0.5em);
  577. width:400px;
  578. background-color: #fff;
  579. padding:5px;
  580. .rounded(5px);
  581. #user-register-form{
  582. // hide honeypot field, because drupal.attachbehavior() doesn't work
  583. div.homepage-textfield{display:none;}
  584. .description{
  585. .12;
  586. }
  587. }
  588. }
  589. }
  590. /** content-top */
  591. #content-top{
  592. // padding-left:50px;
  593. /** flag-list */
  594. #block-materio-flag-materio-flag-mybookmarks, #block-materio-flag-materio-flag-mylists{
  595. // padding:5px 0;
  596. .10; color:#666666; .300;
  597. .ie8 &{margin-top:40px;}
  598. h2{
  599. .12; .700; .m(0); line-height:1.2; color:#000;
  600. a.open-list, i.icon-remove{
  601. .inlineblock(); cursor:pointer; color:#000;
  602. .opacity(0); .transition-simply-prefix(~"opacity 0.1s ease-out");
  603. }
  604. }
  605. &:hover{
  606. a.open-list, i.icon-remove{
  607. .opacity(1);
  608. }
  609. }
  610. span.listname[name=bookmarks]{
  611. cursor:pointer;
  612. }
  613. section.bookmarks{
  614. height:0; overflow:hidden;
  615. &.active{
  616. height:auto;
  617. }
  618. article.node.vm-bookmark{
  619. overflow:hidden;
  620. }
  621. }
  622. .mylists{
  623. // .transition-simply-prefix(~"height 0.3s ease-out");
  624. section{
  625. h2, .flaged{
  626. height:0; overflow: hidden;
  627. }
  628. &.active{
  629. h2, .flaged{
  630. height:auto;
  631. }
  632. }
  633. }
  634. }
  635. // .js & .mybookmarks{display:none;}
  636. }
  637. }
  638. #tool-bar{
  639. // margin-left:50px;
  640. position:relative;
  641. .inner-content{
  642. padding-top:10px; padding-bottom:10px;
  643. &>*{
  644. .inlineblock();
  645. vertical-align: middle ;
  646. // height:35px;
  647. // margin: 5px;
  648. }
  649. @media @max-480{
  650. .p(0); h1{line-height:0.5;}
  651. }
  652. }
  653. // text-align:right;
  654. // >*{ text-align: left ;}
  655. // .block{
  656. // .inlineblock();
  657. // margin:0 0 0 20px;
  658. // }
  659. .oldie &{.bgc(#B1ADAD); .p(0 10px);}
  660. .btn-group{
  661. .p(0); .rounded(3px); .bgc(#fff); margin:4px;
  662. .shadowBtn();
  663. }
  664. #block-materio-page-title-materio-page-title{
  665. // .ie8 &{margin-top:40px;}
  666. .m(0 10px 0 0);
  667. h1{ .m(0); .24; text-transform: capitalize; .300; line-height:1;}
  668. i{ vertical-align: middle ; .mr(5px);}
  669. i.icon-materio-folder{.mb(2px);}
  670. a.edit-list{
  671. .op-hidden;
  672. i{ .m(0 0 0 5px);}
  673. }
  674. &:hover{
  675. a.edit-list{ .op-visible; }
  676. }
  677. @media @max-980{
  678. display:block;
  679. }
  680. }
  681. #block-materio-search-api-materio-search-api-viewmode{
  682. .viewmode-link{
  683. .inlineblock(); margin:0 2px;
  684. &.active{cursor:normal;}
  685. .inner{display:none;.10; }
  686. }
  687. @media @max-768{
  688. .viewmode-link{ display:block; &:not(.active){display:none;} }
  689. }
  690. @media @max-480{
  691. html.no-touch &:hover, &.hovered{ .viewmode-link.viewmode-cardsmall, .viewmode-link.viewmode-cardmedium{display:block;} }
  692. }
  693. @media @480-768{
  694. html.no-touch &:hover, &.hovered{ .viewmode-link.viewmode-cardsmall, .viewmode-link.viewmode-cardmedium, .viewmode-link.viewmode-cardbig{display:block;} }
  695. }
  696. }
  697. #block-materio-search-api-materio-search-api-search{
  698. // .inlineblock(); vertical-align: middle ;
  699. // position:absolute; top:10px; right:0;
  700. float:right;
  701. >.inner{
  702. .inlineblock(); margin:0 0 0 10px; .p(3px 10px); .bgc(#fff); .rounded(3px); .shadowBtn(); text-align: right;
  703. }
  704. }
  705. #materio-search-api-search-form{
  706. text-align: right;
  707. .inlineblock(); .m(0);
  708. .form-item, input, .form-checkboxes{.inlineblock(); margin:0; vertical-align:middle; padding:0;}
  709. .form-checkboxes{
  710. .p(3px); .12;
  711. .form-item{
  712. margin:0 5px;
  713. label{.10;}
  714. }
  715. }
  716. input#edit-searchfield{
  717. .b(1px, #ccc); .rounded(20px);
  718. .p(4px, 5px); height:15px;
  719. .12; line-height:1;
  720. background-position: 100% 5px;
  721. &.throbbing { background-position: 100% -15px; }
  722. }
  723. #edit-searchfield-autocomplete-aria-live{
  724. .oldie &{
  725. .bgc(#1a1a1a);
  726. }
  727. };
  728. input#edit-create{ .p(3px); }
  729. &.loading{
  730. background: transparent url('../img/ajax-loader.gif') no-repeat 98% center;
  731. input#edit-create{ visibility: hidden; }
  732. }
  733. @media @max-480{
  734. input#edit-searchfield{width:16em;}
  735. #edit-bundles-filter{display:none;}
  736. }
  737. }
  738. }
  739. #center{
  740. background-color: #e6e6e6; .rounded(10px);
  741. .node-type-page &{ .bgc(#fff); }
  742. .ie8 &{height:100%; margin-top:20px;}
  743. }
  744. #content{
  745. // background-color: #f3f3f3;
  746. // .rounded(5px);
  747. .transition-simply-prefix(~"height 0.3s ease-out");
  748. &.faded{
  749. .opacity(0.5);
  750. .transition-simply-prefix(~"opacity 0.3s ease-out");
  751. }
  752. .materiobase-results, .materiobase-actuality, .materio-flags-list{
  753. padding:0 0 30px 0; margin:0 0 20px 0;
  754. &.loading{
  755. background-image: url('../img/ajax-loader.gif');
  756. background-position: center bottom;
  757. background-repeat: no-repeat;
  758. }
  759. p.search-performance, p.flaglist-infos, p.actualities-infos{.12; .500; .m(0); padding:10px 0 5px 15px;}
  760. // p.search-performance{.role-7 & {.12;}}
  761. .search-results, .actuality-items, .flaglist-items{
  762. font-size:0;
  763. >*{font-size:16px;}
  764. text-align:center;
  765. >*{text-align:left;}
  766. }
  767. }
  768. ul.pager{
  769. padding: 1em 0; text-align: left;
  770. .ie8 &{position:absolute; left:37px; bottom: 35px;}
  771. li{margin:0; .inlineblock(); vertical-align: middle;}
  772. .pager-current, a{color:#000;.12; }
  773. .pager-current{.900; .14;.ie8 &{background:#fff; padding:0.3em 1em 0.3em 1em; margin-top:0.05em; border: 1px solid #333333;}}
  774. .pager-first, .pager-previous, .pager-next, .pager-last{ a{ .24; .300; } }
  775. // html.js & {display:none;}
  776. }
  777. .node-type-page &{
  778. // .pl(15px);
  779. }
  780. }
  781. /** #content-bottom */
  782. #content-bottom{
  783. .pt(10px);
  784. }
  785. /** CARDS */
  786. @cardbookmark_w:50px;
  787. @cardbookmark_h:70px;
  788. @cardsmall_w:100px;
  789. @cardsmall_h:140px;
  790. @cardmedium_w:210px;
  791. @cardmedium_h:295px;
  792. @cardbig_w:425px;
  793. @cardbig_h:610px;
  794. @cardfull_w:850px;
  795. @cardfull_h:610px;
  796. .card-box(@w, @h){
  797. width:@w; height:@h;
  798. .inlineblock(); position:relative; margin:7px;
  799. //z-index:10; // pourquoi ce z-index ?
  800. .rounded(5px); background-color: #FFF;
  801. .drop-shadow(0, 0, 5px, 0.2);
  802. .transition-simply-prefix(~"box-shadow 0.3s ease-out, opacity 0.3s ease-out");
  803. }
  804. .card(@w, @h){
  805. .card-box(@w, @h);
  806. >div.side{
  807. .rounded(5px); overflow: hidden;
  808. }
  809. // .no-touch &:hover{ .drop-shadow(0, 0, 5px, 0.7); }
  810. &.focused{ .drop-shadow(0, 0, 7px, 0.9); }
  811. &.just-added{ .opacity(0); }
  812. &.associated{
  813. .transition-simply-prefix(~"margin 0.3s ease-out");
  814. &.just-added{margin-left:-@w;margin-right:@w;}
  815. .modal-content &{
  816. position:absolute;
  817. top:0; left:0;
  818. z-index:999;
  819. }
  820. }
  821. &.removed{
  822. .transition-simply-prefix(~"width 0.3s ease-out");
  823. width:0; .pl(0); .pr(0); .mr(0); .ml(0); overflow:hidden;
  824. }
  825. // TODO: how to show that a card was flaged ?
  826. // .search-results &.flaged, .actuality-items &.flaged{
  827. // border: 2px solid rgba(0,0,0, 0.3); .m(3px);
  828. // .drop-shadow(0, 0, 3px, 0.6);
  829. // }
  830. nav.nav{
  831. position:absolute; top:0; right:0; z-index:11;
  832. .p(5px 0);
  833. .border-radius(0, 5px, 0, 3px);
  834. .11;
  835. // colors
  836. // .bgca(10, 10, 10, 0.9); color:#fff;
  837. // a{color:#fff;}
  838. //ul{.bgca(10, 10, 10, 0.9);}
  839. .bgca(255, 255, 255, 0.9); color:#000;
  840. a{color:#000;}
  841. ul{.bgca(255, 255, 255, 0.9);}
  842. span.op{.900; .14;}
  843. ul{.p(0); .m(0);}
  844. section{
  845. position:relative;
  846. &>i{.m(0 5px); &:hover{cursor:pointer;}}
  847. }
  848. ul{
  849. position:absolute; right:0; top:0; .mr(22px); min-width:80px; .p(0); display:block;
  850. .rounded(3px); .drop-shadow(-2px, 2px, 5px, 0.2);
  851. // .p(5px 10px);
  852. li{
  853. .p(0); .m(0); line-height:1; display:block;
  854. height:0; overflow:hidden; .transition-simply-prefix(~"height 0.2s ease-out");
  855. // height:15px; overflow:hidden;
  856. a{ display:block;}
  857. }
  858. &.flag-lists-entity-links{
  859. width:160px;
  860. font-size:0;
  861. >*{font-size:11px;}
  862. // &.loading{
  863. // a{visibility: hidden;}
  864. // background: transparent url('../img/ajax-loader.gif') no-repeat 98% center;
  865. // }
  866. li{
  867. .inlineblock(); min-width:48%; max-width:98%; .pl(2px);
  868. a{
  869. color:#a6a6a6; .transition-simply-prefix(~"color 0.2s ease-out");
  870. &:hover, &.unflag-action{
  871. color:#000; text-decoration: none;
  872. }
  873. }
  874. &.flag-lists-create{
  875. display:block; width:100%;
  876. >*{ .mt(1px); .pt(1px); .bt(1px solid #e6e6e6);}
  877. a{color:#000;}
  878. }
  879. &.loading{
  880. a{visibility: hidden;}
  881. background: transparent url('../img/ajax-loader.gif') no-repeat 98% center;
  882. }
  883. }
  884. }
  885. .ie8 &{background:#FFF;}
  886. }
  887. section:hover{
  888. ul{
  889. .p(5px 5px);
  890. li{height:17px;}
  891. &.flag-lists-entity-links{
  892. // width:160px;
  893. }
  894. }
  895. }
  896. // display:none;
  897. }
  898. // &:hover{nav.nav{display:block;}}
  899. div.workflow{
  900. position:absolute; top:0; left:0; z-index:11;
  901. .p(5px);
  902. .border-radius(5px, 0, 3px, 0);
  903. .11; vertical-align: top;
  904. .bgca(255, 255, 255, 0.9); color:#000;
  905. span{.p(3px 0 0 4px); .inlineblock();}
  906. }
  907. .field-name-field-description .upgrade{
  908. .12;
  909. .pt(4em);.mt(-4.5em);
  910. // .bgc(rgba(255,255,255,0.6));
  911. background : linear-gradient(to bottom, rgba(255,255,255,0) 0%, #fff 4em);
  912. position:relative;
  913. }
  914. .side.oops p, .side .upgrade p{
  915. .p(10px); .12;
  916. a{
  917. display:block; .m(10px 0);
  918. .18; .p(0.1em 0.6em 0.2em); .rounded(0.3em);
  919. font-weight:bold;
  920. border: 2px solid #69CDCF; .bgc(#69CDCF); color:#fff; // blanc/bleu
  921. .shadowTextBtnBlack();
  922. text-align: center; text-decoration: none;
  923. }
  924. }
  925. }// .card()
  926. /** card search performance */
  927. article.search-performance{
  928. .inner{
  929. .p(1em);
  930. }
  931. p{.14;}
  932. a.button{
  933. display:block; .m(10px auto); max-width:10em;
  934. .18; .p(0.1em 0.6em 0.2em); .rounded(0.3em);
  935. font-weight:bold;
  936. border: 2px solid #69CDCF; .bgc(#69CDCF); color:#fff; // blanc/bleu
  937. .shadowTextBtnBlack();
  938. text-align: center; text-decoration: none;
  939. }
  940. &.view-mode-cardsmall{
  941. .card-box(327px, 140px);
  942. }
  943. &.view-mode-cardmedium{
  944. .card-box(210px, 295px);
  945. .inner{
  946. .p(4em 1em 0);
  947. }
  948. }
  949. &.view-mode-cardbig{
  950. .card-box(425px, 115px);
  951. display:block; margin:0 auto;
  952. }
  953. &.view-mode-cardfull{
  954. .card-box(850px, 115px);
  955. .inner{
  956. .p(1em 212px);
  957. }
  958. display:block; margin:0 auto;
  959. }
  960. }
  961. /** CARD BOOKMARKS */
  962. article.node-materiau.vm-bookmark, article.node-breve.vm-bookmark{
  963. .card(@cardbookmark_w, @cardbookmark_h);
  964. margin:3px;
  965. .group-header{
  966. display:none;
  967. }
  968. .group-images{ .horihoverswitch(); }
  969. // nav.nav{top:0;}
  970. div.workflow{display:none;}
  971. }
  972. /** CARD SMALL */
  973. article.node-materiau.vm-cardsmall, article.node-breve.vm-cardsmall{
  974. .card(@cardsmall_w, @cardsmall_h); //width:100px; height:140px;
  975. .group-header{
  976. display:none; position:absolute;
  977. .14; .500;
  978. .field-name-title-field{.700;}
  979. .field-name-field-reference-materio, .field-name-field-localisation{ .inlineblock(); .12; }
  980. .field-name-field-localisation{ float:right; }
  981. }
  982. .group-images{ .horihoverswitch(); .rounded(5px); overflow:hidden; }
  983. nav.nav{
  984. ul.flag-lists-entity-links{
  985. width:75px; min-width:75px;
  986. li{width:98%;}
  987. }
  988. .ie8 &{background: #FFF}
  989. }
  990. .no-touch &:not(.focused) nav.nav{.op-hidden;}
  991. .no-touch &:not(.focused) div.workflow{.op-hidden;}
  992. }
  993. /** TOOLTIP SMALL CARD */
  994. #tooltip{
  995. .group-header.smallcard{
  996. .14; .500;
  997. .field-name-title-field{.700;}
  998. .field-name-field-reference-materio, .field-name-field-localisation{ .inlineblock(); .12; }
  999. .field-name-field-localisation{ float:right; }
  1000. }
  1001. }
  1002. /** CARD MEDIUM */
  1003. article.node-materiau.vm-cardmedium, article.node-breve.vm-cardmedium{
  1004. .card(@cardmedium_w, @cardmedium_h); //width:210px; height:295px;
  1005. .side{
  1006. .layer(); .bgc(#fff); cursor:pointer;
  1007. &:nth-child(2){z-index:1;}
  1008. }
  1009. .group-header{
  1010. position:absolute; bottom:0; z-index:2;
  1011. width:190px; padding:5px 15px 5px 5px; min-height:55px;
  1012. .20; .300; line-height:1;
  1013. .field-name-title-field{.700;}
  1014. .field-name-field-nature-titre{.14;}
  1015. .bgcWhite();
  1016. .border-radius(0, 0, 4px, 4px); overflow: hidden;
  1017. .field-name-field-reference-materio, .field-name-field-localisation, .field-name-field-authored-on{ .inlineblock(); .12; vertical-align: bottom; width:48%;}
  1018. .field-name-field-localisation{ text-align: right; }
  1019. .ie8 &{background:#fff; font-color:#000; line-height: 1em; padding: 10px;}
  1020. }
  1021. &.node-breve .group-header{
  1022. // .20; .300; line-height:1.1;
  1023. color:#fff; .bgcBlack();
  1024. .field-name-field-authored-on{ .12; .500; }
  1025. .ie8 &{background:#000; font-size:15px; line-height: 1.2em;}
  1026. }
  1027. // &:hover .group-header{
  1028. // .bgcWhiteParentHover();
  1029. // }
  1030. .group-images{ .horihoverswitch(); }
  1031. // side 2
  1032. .field-name-field-description, .field-name-body{
  1033. .12; .300; overflow: hidden; z-index:-1; .columnized(5px); .column>*{.pr(25px);}
  1034. }
  1035. // side 3
  1036. .column-wrapper{
  1037. .columnized(5px);
  1038. }
  1039. .field-name-field-company-fab, .field-name-field-company-distrib{
  1040. .12; padding:5px; .300;
  1041. .field-label{ .10; text-transform: lowercase; margin:0;}
  1042. .field-name-field-tode-company{.14;}
  1043. // span.print-link{display:none;}
  1044. }
  1045. .field-name-field-materiau-ref, .field-name-field-source, .field-name-field-attachments{
  1046. .12; .p(5px); .300; a{color:#000;}
  1047. }
  1048. .field-label{.900; .m(1em 0 0.5em);}
  1049. // nav
  1050. .no-touch &:not(.focused) nav.nav{.op-hidden;}
  1051. .no-touch &:not(.focused) div.workflow{.op-hidden;}
  1052. .ie8 &{nav.nav{background: #FFF}}
  1053. }
  1054. /** CARD BIG */
  1055. article.node-materiau.vm-cardbig, article.node-breve.vm-cardbig{
  1056. .card(@cardbig_w, @cardbig_h); //width:425px; height:610px;
  1057. .side{
  1058. .layer(); .bgc(#fff); height:270px; top:340px; cursor:pointer;
  1059. &:nth-child(2){z-index:1;}
  1060. }
  1061. .group-side1{position:relative; .border-radius(5px, 5px, 0, 0); overflow:hidden;}
  1062. .group-header{
  1063. position:absolute; bottom:0; z-index:2;
  1064. width:405px; padding:10px;
  1065. .20; .300; line-height: 1.1;
  1066. .field-name-title-field{.700;}
  1067. .field-name-field-nature-titre{.14;}
  1068. .bgcWhite();
  1069. .field-name-field-reference-materio, .field-name-field-localisation, .field-name-field-authored-on { .inlineblock(); .12; vertical-align: bottom; width:48%;}
  1070. .field-name-field-localisation{ text-align: right; }
  1071. .ie8 &{background:#fff; font-color:#000; line-height: 1em; padding: 20px; border-bottom: 1px solid #C6C6C6;}
  1072. }
  1073. // &:hover .group-header{ .bgcWhiteParentHover(); }
  1074. &.node-breve .group-header{
  1075. color:#fff; .bgcBlack();
  1076. .field-name-field-authored-on{ .12; .500; }
  1077. .ie8 &{background:#000; font-color:#fff; line-height: 1em; padding: 20px;}
  1078. }
  1079. .group-images{ .horihoverswitch(); height:auto;}
  1080. // side 2
  1081. .field-name-field-description, .field-name-body{
  1082. .12; .300; .columnized(10px);
  1083. }
  1084. // side 3
  1085. .column-wrapper{
  1086. .columnized(10px);
  1087. }
  1088. // side 4
  1089. .field-name-field-company-fab, .field-name-field-company-distrib{
  1090. .12; padding:10px; .300;
  1091. .field-label{ .10; text-transform: lowercase; float: none; }
  1092. .field-name-field-tode-company{.14;}
  1093. }
  1094. .field-name-field-materiau-ref, .field-name-field-source, .field-name-field-attachments{
  1095. .12; .p(10px); .300; a{color:#000;}
  1096. }
  1097. .field-label{.900; .m(0 0 0.5em);}
  1098. // nav
  1099. // nav.nav{ .m(5px); }
  1100. .ie8 &{nav.nav{background: #FFF}}
  1101. // upgarde and full
  1102. .side.oops p, .side .upgrade p{
  1103. .p(3em);
  1104. a{
  1105. border: 2px solid #eee; .bgc(#eee); color:#fff;
  1106. .transition-simply-prefix(~"border 0.3s ease-out");
  1107. .transition-simply-prefix(~"background-color 0.3s ease-out");
  1108. }
  1109. }
  1110. &:hover .side.oops p, &:hover .side .upgrade p{
  1111. a{
  1112. border: 2px solid #69CDCF; .bgc(#69CDCF);
  1113. }
  1114. }
  1115. }
  1116. /** CARD FULL */
  1117. article.node-materiau.vm-cardfull, article.node-breve.vm-cardfull{
  1118. .card(@cardfull_w, @cardfull_h); //width:875px; height:610px;
  1119. nav.nav{top:0;}
  1120. font-size:0px;
  1121. >*{.16;}
  1122. >.side{.inlineblock(); width:50%;
  1123. &.group-side-left{
  1124. .border-radius(5px, 0, 0, 5px);
  1125. }
  1126. &.group-side-right{
  1127. .border-radius(0, 5px, 5px, 0);
  1128. }
  1129. }
  1130. .group-images{ .horihoverswitch(); }
  1131. .group-header{
  1132. .20; .300; padding:10px;
  1133. .field-name-title-field{.700;}
  1134. .field-name-field-reference-materio, .field-name-field-localisation, .field-name-field-authored-on{ .inlineblock(); .12; .pr(15px);}
  1135. // .field-name-field-localisation{ float:right; }
  1136. }
  1137. &.node-breve .group-header{
  1138. color:#fff; .bgcBlack();
  1139. .field-name-field-authored-on{ .500; }
  1140. }
  1141. .field-name-field-description, .field-name-body{
  1142. .12; .300; .p(10px);
  1143. }
  1144. .field-name-field-attachments{
  1145. .p(10px);
  1146. .12;
  1147. }
  1148. // side 4
  1149. .field-name-field-company-fab, .field-name-field-company-distrib{
  1150. .12; padding:10px; .300;
  1151. .inlineblock(); width:40%;
  1152. .field-item{.mt(1em);}
  1153. .field-label{ .10; text-transform: lowercase; float: none; }
  1154. .field-name-field-tode-company{.14;}
  1155. }
  1156. .field-name-field-materiau-ref, .field-name-field-source, .field-name-field-attachments{
  1157. .12; .p(10px); .300; a{color:#000;}
  1158. }
  1159. .field-label{.900; .m(0 0 0.5em);}
  1160. // nav
  1161. nav.nav{ .m(5px); }
  1162. div.workflow{ .m(5px); }
  1163. // upgarde and full
  1164. .side.oops p, .side .upgrade p{
  1165. .p(3em);
  1166. a{
  1167. border: 2px solid #eee; .bgc(#eee); color:#fff;
  1168. .transition-simply-prefix(~"border 0.3s ease-out");
  1169. .transition-simply-prefix(~"background-color 0.3s ease-out");
  1170. }
  1171. }
  1172. &:hover .side.oops p, &:hover .side .upgrade p{
  1173. a{
  1174. border: 2px solid #69CDCF; .bgc(#69CDCF);
  1175. }
  1176. }
  1177. }
  1178. @import "misc.less";
  1179. /** AUTOCOMPLETE */
  1180. #autocomplete{
  1181. .b(0); .rounded(3px);
  1182. .bgca(0,0,0,0.6);
  1183. text-align: left;
  1184. margin-left: 2px;
  1185. .oldie &{.bgc(#545454);}
  1186. li{
  1187. color:#FFF; background-color: transparent;
  1188. &.selected{.bgca(0,0,0,0.8);}
  1189. div{padding:0.1em 5px;} .12;
  1190. }
  1191. }
  1192. /**
  1193. * the old modal api (balck bg) for contextual forms (create new flag list)
  1194. */
  1195. .mat_modal(){
  1196. background-color: rgba(0,0,0,0.7);
  1197. .rounded(5px); .b(0);
  1198. *{color:#fff; .bgc(transparent);}
  1199. .12;
  1200. form{
  1201. .bgc(transparent); color:#fff; .b(0px);
  1202. .form-actions{
  1203. .bgc(transparent); .m(0); .p(0); .b(0);
  1204. }
  1205. input.form-text, textarea, div.grippie{.bgc(#fff); color:#000; .b(0);}
  1206. .form-actions{ text-align: right ;}
  1207. input.form-submit{
  1208. .btn; .btn-mini; color:#000;
  1209. &[name="create"]{
  1210. .btn-info;
  1211. }
  1212. }
  1213. }
  1214. }
  1215. #modal{
  1216. .mat_modal();
  1217. >*{.p(10px);}
  1218. .form-item-flag-lists-name{
  1219. // label, input{.inlineblock();}
  1220. // label{width:38%;}
  1221. input{width:95%;}
  1222. }
  1223. .actions{
  1224. text-align: right;
  1225. }
  1226. }
  1227. /**
  1228. * the new modal api used for preview and register modal
  1229. */
  1230. .modal-wrapper {
  1231. &:before {
  1232. content: "";
  1233. display: inline-block;
  1234. height: 100%;
  1235. margin-right: -0.25em;
  1236. vertical-align: middle;
  1237. }
  1238. &:after, &:before {
  1239. -moz-box-sizing: border-box;
  1240. }
  1241. // background-color: rgba(0, 0, 0, 0.4);
  1242. bottom: 0;
  1243. // display: none;
  1244. left: 0;
  1245. position: fixed;
  1246. right: 0;
  1247. text-align: center;
  1248. top: 0;
  1249. white-space: nowrap;
  1250. z-index: 99998;
  1251. .modal-bg{
  1252. background-color: #000;
  1253. position:absolute;
  1254. top:0; left:0;
  1255. width:100%; height:100%;
  1256. .opacity(0.5);
  1257. }
  1258. .modal-content{
  1259. position:relative;
  1260. display: inline-block;
  1261. margin: 0 auto;
  1262. text-align: left;
  1263. vertical-align: middle;
  1264. white-space: normal;
  1265. // width: 400px;
  1266. min-height:200px;
  1267. // background-color: #fff;
  1268. }
  1269. }
  1270. /** MODALCONTENT */
  1271. // deprecated ??
  1272. // #modalContent{
  1273. // .mat_modal();
  1274. // .ctools-modal-content{
  1275. // .b(0); .bgc(transparent); color:#fff;
  1276. // .modal-header{
  1277. // .bgc(transparent); .b(0);
  1278. // #modal-title{
  1279. // .p(5px, 0);
  1280. // }
  1281. // a.close{
  1282. // width:10px;height:10px;
  1283. // // TODO: setup the sprite
  1284. // background-image: url('../img/close.png');
  1285. // img{display:none}
  1286. // }
  1287. // }
  1288. // .modal-content{
  1289. // .form-item{
  1290. // label, input{
  1291. // .inlineblock(); vertical-align: middle;
  1292. // }
  1293. // label{width:35%;}
  1294. // input.form-text{width:60%;}
  1295. // div.description{text-align: right ;}
  1296. // }
  1297. // // .form-actions{
  1298. // // .bgc(transparent); .m(0); .p(0); .b(0);
  1299. // // }
  1300. // }
  1301. // .ajax-register-links-wrapper{
  1302. // .ajax-register-links{
  1303. // .btn-group;
  1304. // li a{.b(0); .10; .btn; .btn-mini; .btn-inverse;}
  1305. // }
  1306. // }
  1307. // }
  1308. // }
  1309. /** JSCROLLPAN */
  1310. .jspContainer{
  1311. .jspVerticalBar{
  1312. background-color: transparent;
  1313. width:5px; //margin-right:-5px;
  1314. .jspTrack{
  1315. background-color: transparent;
  1316. .jspDrag{
  1317. background-color: #ccc;
  1318. .rounded(3px);
  1319. }
  1320. }
  1321. }
  1322. }
  1323. /** TOOLTIP */
  1324. #tooltip{
  1325. position:absolute; z-index:999; max-width:180px; background-color: rgba(255, 255, 255, 1); .p(5px); .rounded(3px);
  1326. .12; .500;
  1327. .drop-shadow(0, 0, 5px, 0.4);
  1328. &.op-visible{
  1329. .transition-simply-prefix(~"opacity 0.1s ease-out, top 0.1s linear"); // left 0.1s linear,
  1330. }
  1331. }
  1332. /** FEEDBACK */
  1333. #block-feedback-form{
  1334. @media @max-768{ bottom:5px; left:5px; right:auto; }
  1335. h2{
  1336. line-height:1.2; .14; .m(0);
  1337. .title{display:none;}
  1338. }
  1339. #feedback-form-toggle{
  1340. .p(2px 3px); .rounded(3px); .bgc(#ff7600); color:#fff;
  1341. line-height:2; .900;
  1342. }
  1343. .content{
  1344. .mat_modal();
  1345. .ie8 &{background:#000;}
  1346. }
  1347. #feedback-status-message{.bgc(#fff); .p(5px);}
  1348. }
  1349. /** TASK / TABS **/
  1350. .tabs-primary(){
  1351. a{
  1352. .12;
  1353. .p(5px 10px);
  1354. .bgc(#e6e6e6);
  1355. &.active, &:hover{.bgc(#e6e6e6);}
  1356. .rounded(3px);
  1357. }
  1358. }
  1359. .tabs-secondary(){
  1360. .10;
  1361. .p(0.5em 1em);
  1362. }
  1363. #tasks{
  1364. ul.tabs{
  1365. .inlineblock();
  1366. border:0 solid #fff;
  1367. .p(0); .m(0);
  1368. li{.p(0); .m(2px 5px); border:0 solid #fff;}
  1369. a{
  1370. border:0; color:#7f7f7f;
  1371. &.active, &:hover{font-weight: 900; color:#000;}
  1372. }
  1373. &.primary{
  1374. .tabs-primary();
  1375. }
  1376. &.secondary{
  1377. .tabs-secondary();
  1378. }
  1379. }
  1380. }
  1381. /** STATICS */
  1382. /** user */
  1383. .page-user, .page-user-edit, .page-user-password, .page-user-reset, .page-toboggan{
  1384. #main{ background: #fff url('../img/user-page-bg.gif') no-repeat bottom right; }
  1385. .messages{ width:800px; margin:0 auto; }
  1386. &.role-6 #tasks .tabs.primary{display:none;}
  1387. &.role-6 #tasks .tabs.secondary{.tabs-primary();}
  1388. #content .inner-content >*{
  1389. width:800px; margin:0 auto; .pt(1em); .14;
  1390. fieldset{
  1391. margin-bottom:1em;
  1392. }
  1393. legend{
  1394. .16; margin:0; padding:10px 0 5px 0; line-height:1; border:0 solid #fff;
  1395. a{color:#000;}
  1396. }
  1397. .form-item{
  1398. margin:0 0 0.5em 0; width:100%;
  1399. label, input.form-text{
  1400. .inlineblock(); vertical-align:middle;
  1401. }
  1402. label{margin-right:1em; min-width:6em;}
  1403. input.form-text{
  1404. padding:2px 4px;
  1405. }
  1406. }
  1407. .form-wrapper{
  1408. &>.form-item{margin:0 0 2em 0;}
  1409. }
  1410. .form-type-password-confirm, .form-type-new-password-confirm{
  1411. label{width:9em;}
  1412. .password-parent{width:auto;}
  1413. .password-strength, .password-confirm{
  1414. width:15em; margin-top:0;
  1415. }
  1416. }
  1417. .form-type-checkbox{
  1418. input{margin:0;}
  1419. label{.14; margin:0;}
  1420. }
  1421. #edit-language{
  1422. .form-item{
  1423. .inlineblock(); width:auto; margin-right:1em;
  1424. input, label{margin:0;}
  1425. }
  1426. }
  1427. select.form-select{
  1428. width:auto; padding:2px 4px; height:auto;
  1429. }
  1430. div.description{
  1431. .11;
  1432. }
  1433. div.form-actions{
  1434. .m(0); text-align:right; .p(1em 0.5em);
  1435. }
  1436. input#edit-submit{.btn; .btn-success;}
  1437. /* #user-profile-form */
  1438. #edit-profile-adherent-field-first-name, #edit-profile-adherent-field-name,
  1439. #edit-profile-adherent-field-private-quality, #edit-profile-adherent-field-service, #edit-profile-adherent-field-employee,
  1440. #edit-profile-adherent-field-naf, #edit-profile-adherent-field-siret{
  1441. .inlineblock(); vertical-align:middle; width:auto; .m(0 1em 0.5em 0);
  1442. div{width:auto; .m(0); .p(0);}
  1443. // label{.m(0 0.5em 0 0);}
  1444. }
  1445. #edit-profile-adherent-field-name, #edit-profile-adherent-field-service,
  1446. #edit-profile-adherent-field-naf, #edit-profile-adherent-field-siret, .form-item-profile-adherent-field-adresse-und-0-locality{
  1447. label{min-width:auto;}
  1448. }
  1449. #edit-profile-adherent-field-siret{input{width:8em;}}
  1450. #edit-profile-adherent-field-naf{input{width:13em;}}
  1451. #edit-profile-adherent-field-organization{ .m(2em 0 0 0); input{width:35em;} }
  1452. #edit-profile-adherent-field-employee{
  1453. input{width:4em;}
  1454. }
  1455. #edit-profile-adherent-field-private-phone{
  1456. .form-phone-number{
  1457. .inlineblock(); vertical-align:middle;
  1458. }
  1459. }
  1460. #edit-profile-adherent-field-adresse{
  1461. .street-block{
  1462. input{ width:35em;}
  1463. }
  1464. .locality-block{
  1465. .form-item{width:auto; .mr(1em);}
  1466. }
  1467. }
  1468. #edit-profile-adherent-field-user-website{
  1469. .m(2em 0 0 0);
  1470. .form-item>*{.inlineblock(); vertical-align: middle; }
  1471. input{width:35em}
  1472. }
  1473. &.profile{
  1474. h3{border:0 solid transparent;}
  1475. .field-label{display:inline;}
  1476. }
  1477. }
  1478. } // user
  1479. /** SIMPLENEWS */
  1480. body.node-type-simplenews{
  1481. #content{
  1482. .inner-content{
  1483. text-align:center;
  1484. }
  1485. article.node.node-simplenews{
  1486. .inlineblock();
  1487. max-width:600px;
  1488. padding:1em 0;
  1489. tbody{
  1490. border-top:0px;
  1491. }
  1492. }
  1493. }
  1494. }
  1495. /** PAGE CONTACT */
  1496. .page-node-11175{
  1497. #main{
  1498. // .bgc(#fff);
  1499. background: #fff url('../img/bg-contact.gif') no-repeat bottom right;
  1500. .field-name-body p{
  1501. .inlineblock; .m(15px);
  1502. strong{.18;}
  1503. }
  1504. }
  1505. } // contact
  1506. /** PRICING */
  1507. body.page-node-11187{
  1508. // #center{ background-color: #fff; }
  1509. @media @min-480{
  1510. .node-11187{
  1511. .field-name-body{
  1512. div.column, div.column-demi, div.column-full, div.column-auto{
  1513. .inlineblock; .m(10px);
  1514. }
  1515. div.column{
  1516. width:22.4%;
  1517. ul.list-text{ min-height:170px;}
  1518. }
  1519. div.column-demi{
  1520. width:46%;
  1521. ul.list-text{ min-height:110px;}
  1522. }
  1523. div.column-full{
  1524. width:92%;
  1525. // ul.list-text{ min-height:110px;}
  1526. }
  1527. div.column-auto{
  1528. width:auto;
  1529. max-width: 98%;
  1530. }
  1531. }
  1532. }
  1533. // #block-materio-user-user-register{
  1534. // width:600px; .m(0 auto);
  1535. // }
  1536. }
  1537. @media @max-480{
  1538. // #block-materio-user-user-register{ .p(25px 0 0 0); #user-login, >h3:first-child, h3 >span{display:block;}}
  1539. #block-system-help{text-align: center;}
  1540. }
  1541. .node-11187{
  1542. .field-name-body{
  1543. text-align:center;
  1544. >*{text-align:left;}
  1545. div.column, div.column-demi, div.column-full, div.column-auto{
  1546. position:relative;
  1547. .rounded(5px); .drop-shadow(0, 0, 6px, 0.5);
  1548. .ie8 &{max-width:500px; margin:auto; margin-bottom:15px; border:1px solid #C6C6C6;}
  1549. overflow:hidden;
  1550. &>*{ .p(0 10px);}
  1551. img{float:left; .p(0); }
  1552. h2{ text-align: left; .m(5px 0 0); }
  1553. .subtitle{
  1554. .p(0 0 0 1em);
  1555. .18; .italic; .bold; line-height:1;
  1556. }
  1557. ul{.m(0); .p(0 15px);}
  1558. li{
  1559. list-style: none; .12;
  1560. &:before{
  1561. content:"+ ";
  1562. .900;
  1563. }
  1564. }
  1565. .get-link{
  1566. .m(0); .border-radius(0 0 5px 5px); border: 1px solid #fff; min-height: 92px;
  1567. a{ display:block; width:100%; .p(15px 0); color:#1A1A1A; text-decoration: none; }
  1568. }
  1569. &.gratos{ .get-link{background-color: #4BA13D; } }
  1570. &.flocon{ .get-link{ background-color: #69CDCF; } }
  1571. &.etoile { .get-link{ background-color: #D476AE; } }
  1572. &.cinqetoiles { .get-link{ background-color: #E6DE1C; } }
  1573. // &.ecole-de-neige { .list-neige{min-height:80px;} }
  1574. } // end div.column div.column-demi
  1575. div.column{
  1576. h2{ padding:10px 0 0; .24; }
  1577. .subtitle{ min-height:3em; }
  1578. .get-link{
  1579. .p(0);
  1580. .28; text-align: center;
  1581. .italic; .900;
  1582. span{ .20; }
  1583. .shadowTextBtnWhite();
  1584. }
  1585. }
  1586. div.column-demi{
  1587. h2{ padding:10px 0 0; .24; top:0; }
  1588. .subtitle{ min-height:2em; }
  1589. ul{ .14; min-height:120px;}
  1590. .get-link{ .14; text-align: left; .p(0 1em); .bgc(#ddd); }
  1591. }
  1592. }
  1593. } // end .node-11187
  1594. // hide get free account for user already logged-in
  1595. // hide get flocon for user already flocon (role-6)
  1596. &.logged-in{
  1597. .column.gratos{.get-link{
  1598. cursor:auto!important;
  1599. a{display:none!important;}
  1600. }}
  1601. &.role-6{
  1602. .column.flocon{.get-link{
  1603. cursor:auto!important;
  1604. a{display:none!important;}
  1605. }}
  1606. }
  1607. }
  1608. } // pricing
  1609. /** ADHESION FORM */
  1610. .node-11186{
  1611. nav ul.links a.language-link { display:none; }
  1612. }
  1613. #webform-client-form-11186{
  1614. @media @min-768{
  1615. .p(10px 30px);
  1616. #webform-component-column-left--membership-options{
  1617. .m(10px 0);
  1618. label{width:auto;}
  1619. }
  1620. fieldset{
  1621. .rounded(5px); border-left: 1px solid #cccccc; border-bottom: 1px solid #cccccc; .p(10px);
  1622. fieldset{ border: 0 solid #ddd; .p(0);}
  1623. }
  1624. legend{.m(0); .18; .700;}
  1625. .form-item{ .m(0 20px 0 0); }
  1626. label{ .12; width:10em; .inlineblock; vertical-align:middle; .mr(1em); border-bottom: 1px solid #cccccc; }
  1627. .description{ .11; width:25em; .inlineblock; vertical-align:bottom; .ml(1em); color:#7f7f7f;}
  1628. input.form-text{width:13em;}
  1629. }
  1630. @media @max-768{
  1631. .p(10px);
  1632. #webform-component-column-left--membership-options{
  1633. .m(0 0 10px 0);
  1634. .form-item{width:100%;}
  1635. label{ width:75%; }
  1636. }
  1637. legend{.m(0); .16; .700;}
  1638. .form-item{ .m(0); float:none;}
  1639. label{ .12; width:30%; .inlineblock; vertical-align:middle; .mr(0.5em); }
  1640. input.form-text, select.form-select{width:60%;}
  1641. #webform-component-infos{.14;}
  1642. }
  1643. background-color: #e6e6e6; .rounded(10px);
  1644. .fieldset-wrapper>.form-item{ .inlineblock; }
  1645. #webform-component-column-left{.inlineblock; width:25%; border:none;}
  1646. #webform-component-column-right{ .inlineblock; min-width:70%;}
  1647. #webform-component-column-left--membership-options{
  1648. .form-type-radio{
  1649. border:1px solid #ddd; .rounded(5px); .p(10px 5px); .m(5px 0);
  1650. input{ .inlineblock; vertical-align: middle; .m(0 5px)}
  1651. label{.20; .700; .inlineblock; vertical-align: middle; .m(0);}
  1652. background-color: #fff;
  1653. &:hover{.drop-shadow(0, 0, 5px, 0.2); }
  1654. &.form-item-submitted-column-left-membership-options:nth-child(1){background-color: #69CDCF;}
  1655. &.form-item-submitted-column-left-membership-options:nth-child(2){background-color: #D476AE;}
  1656. &.form-item-submitted-column-left-membership-options:nth-child(3){background-color: #E6DE1C;}
  1657. &.form-item-submitted-column-left-membership-options:not(.selected){opacity:0.4;}
  1658. }
  1659. &>label{width:200px; .18; .700; }
  1660. label{ border: 0; }
  1661. }
  1662. #webform-component-column-right--me--my-account-email{
  1663. display:block;
  1664. }
  1665. #webform-component-column-right--company--administrative-e-mail{
  1666. .description{.inlineblock;}
  1667. }
  1668. #addressfield-wrapper{ .mt(1em); }
  1669. .street-block .form-item{ .inlineblock; }
  1670. #webform-component-column-right--collaborators{
  1671. .m(20px 0); overflow:hidden;
  1672. fieldset{.inlineblock; width:33%;}
  1673. .form-item{display:block;}
  1674. label{width:6em;}
  1675. input{width:11em;}
  1676. }
  1677. #webform-component-infos{.m(20px 0);}
  1678. .form-actions{
  1679. .p(0); .m(0);
  1680. border: 0px;
  1681. background-color: transparent;
  1682. text-align: left;
  1683. .form-submit{
  1684. border: 2px solid #69CDCF; .bgc(#69CDCF); color:#fff;
  1685. .18; .p(0.2em 1em 0.3em); .rounded(0.3em);
  1686. font-weight:bold;
  1687. .mb(9px);
  1688. .shadowTextBtnBlack();
  1689. }
  1690. }
  1691. #webform-component-column-right--news-letters{
  1692. >label{.m(0); .18; .700; border:none; line-height:40px}
  1693. .form-item{
  1694. .inlineblock();
  1695. label{width:auto}
  1696. input, label{.m(0);}
  1697. }
  1698. }
  1699. #edit-submitted-terms-of-services{
  1700. .mb(0.5em);
  1701. input, label{.m(0 0.3em 0 0);}
  1702. label{ width:auto; }
  1703. }
  1704. } // adhesion
  1705. /** UC CART VIEW FORM */
  1706. #uc-cart-view-form{
  1707. background-color: #e6e6e6;
  1708. // .rounded(10px);
  1709. .p(10px, 30px);
  1710. // max-width:@cardfull_w;
  1711. display:inline-block;
  1712. table{
  1713. width:auto; display:table;
  1714. background-color:#fff;
  1715. thead th{border-bottom:none;.p(1em);}
  1716. tbody{
  1717. border-top:none;
  1718. tr.even, tr.odd{
  1719. background-color:#fff;
  1720. border-bottom:none;
  1721. }
  1722. td{
  1723. .p(1em);
  1724. // &.price{ .p(0.5em 1em); }
  1725. }
  1726. }
  1727. }
  1728. .form-type-uc-quantity input{
  1729. width:2em;
  1730. }
  1731. .form-actions{
  1732. .p(0); .m(0);
  1733. border: 0px;
  1734. background-color: transparent;
  1735. text-align: right;
  1736. display:block; width:100%;
  1737. &:before, &:after{
  1738. display:block;
  1739. }
  1740. .form-submit{
  1741. .bouton();
  1742. .ml(1em);
  1743. &#edit-checkout--2{
  1744. .bouton-bleu();
  1745. }
  1746. }
  1747. }
  1748. }
  1749. /** UC CHECKOUT FORM */
  1750. #uc-cart-checkout-form{
  1751. display:inline-block;
  1752. .price-table(){
  1753. .14;
  1754. min-width:20em;
  1755. td.price{width:4em;};
  1756. }
  1757. background-color: #e6e6e6;
  1758. // .rounded(10px);
  1759. .p(10px, 30px);
  1760. fieldset.form-row{
  1761. // .rounded(5px); border-left: 1px solid #cccccc; border-bottom: 1px solid #cccccc;
  1762. .pb(20px); .mb(20px);
  1763. // fieldset{ border: 0 solid #ddd; .p(0);}
  1764. }
  1765. fieldset.form-column{
  1766. .inlineblock; max-width:39%;
  1767. .m(15px 1em);
  1768. > .fieldset-wrapper > .form-wrapper{
  1769. .m(10px 0);
  1770. }
  1771. }
  1772. fieldset.form-column-left{}
  1773. fieldset.form-column-right{
  1774. border-left:1px solid #ccc;
  1775. .ml(2em); .pl(2em);
  1776. // .bgc(#fff); .rounded(5px);
  1777. }
  1778. legend{.m(0); .18; .700; border:none; line-height:2;}
  1779. .fieldset-description{.12;}
  1780. .fieldset-wrapper{.12;}
  1781. .form-item{ .m(0 20px 0 0); }
  1782. .description{ .11; width:25em; .inlineblock; vertical-align:bottom; .ml(1em); color:#7f7f7f;}
  1783. #cart-pane{
  1784. >.fieldset-wrapper{
  1785. .inlineblock();
  1786. .rounded(5px);
  1787. .p(10px);
  1788. .bgc(#fff);
  1789. }
  1790. table{
  1791. .price-table();
  1792. }
  1793. tbody{border:none; }
  1794. tr{background-color: transparent; border:none; }
  1795. td{
  1796. .p(0 5px);
  1797. vertical-align: bottom;
  1798. &.products{
  1799. a{color:inherit; .700;}
  1800. width:auto;
  1801. ul.product-description{.m(0); .12;}
  1802. li{list-style: none;}
  1803. }
  1804. }
  1805. tr.subtotal{
  1806. td{.16; .700;}
  1807. }
  1808. }
  1809. #customer-pane{width:35em;}
  1810. #billing-pane{
  1811. label{ .12; width:8em; .inlineblock; vertical-align:middle; .mr(1em); border-bottom: 1px solid #cccccc; }
  1812. input.form-text{width:13em;}
  1813. }
  1814. #coupon_automatic-pane{}
  1815. #coupon-pane{}
  1816. #payment-pane{
  1817. float:right;
  1818. .fieldset-wrapper{
  1819. .bgc(#fff);
  1820. .rounded(5px);
  1821. .p(10px);
  1822. }
  1823. #line-items-div{
  1824. float:none; border:none;
  1825. .inlineblock(); .m(10px 0 20px);
  1826. table{.price-table();}
  1827. tbody{border:none;}
  1828. td{
  1829. .p(0 5px);
  1830. }
  1831. tr{
  1832. td{.500;}
  1833. &.line-item-total td{
  1834. .16; .700; text-align: right;
  1835. }
  1836. }
  1837. }
  1838. #edit-panes-payment-payment-method{
  1839. label{width:auto; border-bottom:none;}
  1840. .form-item-panes-payment-payment-method{
  1841. border:1px solid #ddd;
  1842. border-radius:5px;
  1843. .m(0.5em); .p(0.5em);
  1844. label{font-weight:bold;}
  1845. }
  1846. }
  1847. #payment-details{
  1848. width:25em;
  1849. border-top:none; .p(0); .m(0);
  1850. }
  1851. }
  1852. .form-actions{
  1853. .p(0); .m(0);
  1854. border: 0px;
  1855. background-color: transparent;
  1856. text-align: right;
  1857. .form-submit{
  1858. .bouton();
  1859. .ml(1em);
  1860. &#edit-continue{
  1861. .bouton-bleu();
  1862. }
  1863. }
  1864. }
  1865. }
  1866. /* UC CART && UC CHECKOUT VALIDATION */
  1867. //.page-cart,
  1868. .page-cart-checkout-review{
  1869. #content{
  1870. //text-align:center;
  1871. &> .inner-content{
  1872. //.card-box(@cardfull_w, @cardfull_h);
  1873. //text-align:left;
  1874. display:inline-block;
  1875. .p(1em);
  1876. }
  1877. }
  1878. #edit-actions{
  1879. .m(0); .p(0);
  1880. &:before, &:after{display:block;}
  1881. }
  1882. #review-instructions{
  1883. width:30em;
  1884. .p(1em 0);
  1885. // .info;
  1886. }
  1887. table.order-review-table{
  1888. border:none;
  1889. .pane-title-row{
  1890. border:none;
  1891. background-color:transparent;
  1892. text-align:left;
  1893. .18;
  1894. td{ .p(1em 0 0 0); }
  1895. }
  1896. table.cart-review{
  1897. tr.odd{
  1898. background-color:transparent;
  1899. border:none;
  1900. }
  1901. }
  1902. td.title-col{
  1903. .p(0);
  1904. text-align:left;
  1905. }
  1906. td.data-col{
  1907. .p(0);
  1908. width:75%;
  1909. }
  1910. .review-button-row{
  1911. border:none;
  1912. background-color:transparent;
  1913. &>td{
  1914. .p(3em 0 0 0);
  1915. }
  1916. form{
  1917. .m(0 0.5em 0 0); .inlineblock();
  1918. }
  1919. }
  1920. }
  1921. #edit-actions{
  1922. border: 0px;
  1923. background-color: transparent;
  1924. text-align: right;
  1925. }
  1926. input.form-submit{
  1927. .bouton();
  1928. .ml(1em);
  1929. &#edit-submit{
  1930. .bouton-bleu();
  1931. }
  1932. }
  1933. }
  1934. /** WHO WE ARE */
  1935. #didactique-page{
  1936. .node-didactique{
  1937. .rounded(5px); background-color: #FFF;
  1938. .drop-shadow(0, 0, 5px, 0.2);
  1939. max-width:850px;
  1940. .14; .bgc(#fff); //.p(5px);
  1941. .m(1em auto); .p(1em);
  1942. .field-name-field-emvideo{
  1943. .m(1em 0);
  1944. }
  1945. .field-name-title-field{
  1946. .24; .900; .italic; padding:5px 0;
  1947. }
  1948. .field-name-field-visuel{
  1949. figure, img{max-width:100%;}
  1950. }
  1951. }
  1952. @media @min-480{
  1953. .side{ .inlineblock(); vertical-align: top; }
  1954. .group-sideleft{ width:60%; }
  1955. .group-sideright{ width:39%; }
  1956. }
  1957. @media @max-480{
  1958. }
  1959. } // who-we-are
  1960. /** DIDACTIQUE */
  1961. .page-whoweare{
  1962. #tool-bar{
  1963. @media @max-480{
  1964. #block-materio-page-title-materio-page-title{display:none;}
  1965. }
  1966. }
  1967. } // didactique
  1968. /** maintenance */
  1969. .maintenance-page{
  1970. #container, #header{ text-align: center; .p(0); position:relative;}
  1971. #main{background-color: transparent; }
  1972. #header h1.site-name{font-size:36px; .m(0); padding-left:0;}
  1973. h2.site-slogan{font-size:16px; .300; .m(0); line-height:1.1;}
  1974. }
  1975. /** FAQ */
  1976. .page-faq-page #main{
  1977. background: #fff url('../img/bg-faq.png') no-repeat bottom right;
  1978. }
  1979. #content .faq-content{
  1980. .faq-description{
  1981. .12; .pb(2em);
  1982. }
  1983. ul.faq-ul-questions-top{
  1984. .m(0);
  1985. li{
  1986. list-style: none;
  1987. a{
  1988. .18; .500;
  1989. }
  1990. }
  1991. }
  1992. h3.faq-header{
  1993. .20; .700; line-height:1.2;
  1994. .m(0);
  1995. a{color:#000;}
  1996. }
  1997. .faq-dl-hide-answer{
  1998. .p(0);
  1999. }
  2000. .faq-category-group{
  2001. .pb(1em);
  2002. }
  2003. .faq-question-answer{
  2004. .p(0.3em 0 0 0.8em);
  2005. .faq-question{
  2006. .16; .p(0); .500;
  2007. a{color:#000;}
  2008. }
  2009. .faq-answer{
  2010. .p(0); .mb(2em);
  2011. .12;
  2012. }
  2013. }
  2014. .field-name-body img{
  2015. max-width:50%;
  2016. height:auto;
  2017. }
  2018. } // faq