styles.scss 90 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435
  1. /**
  2. * Primary Drupal Styles
  3. * Author: g-u-i.net
  4. */
  5. //@charset "UTF-8";
  6. @import "../bower_components/foundation/scss/normalize.scss";
  7. @import "../bower_components/foundation/scss/foundation/functions";
  8. // $row-width: rem-calc(1250);
  9. // $total-columns: 12;
  10. // $column-gutter: rem-calc(20);
  11. //@import "../bower_components/foundation/scss/foundation/settings"; // this is not working, causing an error on compilation
  12. @import "../bower_components/foundation/scss/foundation/components/global";
  13. @import "../bower_components/foundation/scss/foundation/components/type";
  14. @import "../bower_components/foundation/scss/foundation/components/clearing";
  15. @import "../bower_components/foundation/scss/foundation/components/inline-lists";
  16. @import "../bower_components/foundation/scss/foundation/components/buttons";
  17. @import "../bower_components/foundation/scss/foundation/components/button-groups";
  18. @import "../bower_components/foundation/scss/foundation/components/grid";
  19. // @import "../bower_components/foundation/scss/foundation/components/top-bar";
  20. // @import "../bower_components/foundation/scss/foundation/components/block-grid";
  21. @import "gui.scss";
  22. @import "colors.scss";
  23. @import "fonts.scss";
  24. @import "layout.scss";
  25. @import "../fonts/icon/foundation-icons.css";
  26. @mixin shadowBtn(){
  27. @include drop-shadow(0, 0, 5px, 0.4);
  28. @include transition-simply-prefix(box-shadow 0.3s ease-out);
  29. &:hover, &:focus{
  30. @include drop-shadow(0, 0, 5px, 0.7);
  31. }
  32. &:active{
  33. @include transition-simply-prefix(box-shadow 0s ease-out);
  34. @include drop-shadow(0, 0, 5px, 0.4);
  35. }
  36. }
  37. @mixin shadowTextBtnWhite(){
  38. cursor:pointer;
  39. text-shadow:0 0 2px rgba(255, 255, 255, 0.2);
  40. @include transition-simply-prefix(text-shadow 0.3s ease-out);
  41. &:hover, &:focus{
  42. text-shadow:0 0 3px rgba(255, 255, 255, 1);
  43. }
  44. &:active{
  45. @include transition-simply-prefix(text-shadow 0s ease-out);
  46. text-shadow:0 0 2px rgba(255, 255, 255, 0.2);
  47. }
  48. }
  49. @mixin shadowTextBtnBlack(){
  50. cursor:pointer;
  51. text-shadow:0 0 2px rgba(0, 0, 0, 0.2);
  52. @include transition-simply-prefix(text-shadow 0.2s ease-out);
  53. &:hover, &:focus{
  54. text-shadow:0 0 2px rgba(0, 0, 0, 0.8);
  55. }
  56. &:active{
  57. @include transition-simply-prefix(text-shadow 0s ease-out);
  58. text-shadow:0 0 2px rgba(0, 0, 0, 0.2);
  59. }
  60. }
  61. @mixin horihoverswitch(){
  62. position:relative; z-index:1; background-color:#fff;
  63. figure{
  64. position: absolute; top:0; left:0;
  65. &:first-child{ position:relative; z-index:1; }
  66. }
  67. }
  68. @mixin layer(){
  69. position:absolute; width:100%; height:100%; top:0; left:0;
  70. }
  71. .op-visible{
  72. visibility:visible;
  73. .csstransitions &{
  74. opacity:1;
  75. @include transition-simply-prefix(opacity 0.3s ease-out);
  76. }
  77. }
  78. .op-hidden{
  79. visibility:hidden;
  80. >*{
  81. margin-top:-100000px;
  82. }
  83. .csstransition &{
  84. opacity:0;
  85. @include transition-simply-prefix(visibility 0s 0.3s); // opacity 0.3s ease-out); change this
  86. >*{
  87. @include transition-simply-prefix(margin-top 0s 0.3s);
  88. }
  89. }
  90. }
  91. @mixin op-visible(){
  92. visibility:visible;
  93. .csstransitions &{
  94. opacity:1;
  95. @include transition-simply-prefix(opacity 0.3s ease-out);
  96. }
  97. } // change this
  98. @mixin op-hidden(){
  99. visibility:hidden;
  100. >*{
  101. margin-top:-100000px;
  102. }
  103. .csstransition &{
  104. opacity:0;
  105. @include transition-simply-prefix(visibility 0s 0.3s); // opacity 0.3s ease-out); change this
  106. >*{
  107. @include transition-simply-prefix(margin-top 0s 0.3s);
  108. }
  109. }
  110. } // change this
  111. @mixin bouton(){
  112. @include fs16();
  113. font-weight:bold;
  114. padding: 0.1em 0.3em 0.2em; @include rounded(0.3em);
  115. border: 2px solid #ccc; background-color:#ccc; color:#4D4D4D; // blanc/bleu
  116. @include shadowTextBtnWhite();
  117. text-align: center; text-decoration: none;
  118. }
  119. @mixin bouton-bleu(){
  120. @include bouton();
  121. @include shadowTextBtnBlack();
  122. border-color:#69CDCF; background-color:#69CDCF; color:#fff;
  123. }
  124. @mixin bouton-vert(){
  125. @include bouton();
  126. @include shadowTextBtnBlack();
  127. border-color:#E6DE1C; background-color:#E6DE1C; color:#fff;
  128. }
  129. /** colomnized() */
  130. @mixin columnized($padding){
  131. padding : $padding;
  132. &.columnized{
  133. padding: 0;
  134. .column>*{padding:$padding;}
  135. @include transition-simply-prefix(margin-left 0.3s ease-out);
  136. .column-switcher{
  137. display:inline-block; @include rounded(3px); color:#fff; background-color: #3e3e3e; vertical-align:middle;
  138. @include fs700(); @include fs22;
  139. padding: 0.05em 0.15em 0.2em 0.2em; line-height:0.5;
  140. @include regular;
  141. &.prev-column{cursor: w-resize;}
  142. &.next-column{cursor: e-resize;}
  143. }
  144. }
  145. }
  146. @mixin bgcWhite(){
  147. background-color: rgba(255, 255, 255, 0.8);
  148. text-shadow:0 0 4px rgba(255, 255, 255, 0.4);
  149. @include transition-simply-prefix(background-color 0.2s ease-out); // text-shadow 0.2s ease-out); //change this
  150. }
  151. @mixin bgcBlack(){
  152. background-color: rgba(0, 0, 0, 0.7);
  153. text-shadow:0 0 4px rgba(0, 0, 0, 0.4);
  154. @include transition-simply-prefix(background-color 0.2s ease-out); // text-shadow 0.2s ease-out); //change this
  155. }
  156. // .bgcWhiteParentHover(){
  157. // background-color: rgba(255, 255, 255, 0.2);
  158. // text-shadow:0 0 4px rgba(255, 255, 255, 0.9);
  159. // &:hover{
  160. // @include bgcWhite();
  161. // }
  162. // }
  163. $headerheight:45px;
  164. $headerpaddingtop:5px;
  165. $headerpaddingbottom:10px;
  166. $headerouterheight:$headerheight+$headerpaddingtop+$headerpaddingbottom;
  167. /*
  168. __ ___________ ____ __________
  169. / / / / ____/ | / __ \/ ____/ __ \
  170. / /_/ / __/ / /| | / / / / __/ / /_/ /
  171. / __ / /___/ ___ |/ /_/ / /___/ _, _/
  172. /_/ /_/_____/_/ |_/_____/_____/_/ |_|
  173. */
  174. #header{
  175. padding-top:$headerpaddingtop;
  176. padding-bottom:$headerpaddingbottom;
  177. height:$headerheight;
  178. // position:relative;
  179. // @include drop-shadow(0, 3px, 2px, 0.4); margin-bottom:5px;
  180. a{&, &:active, &:visited{color:#000;}}
  181. // .logo, #header-blocks{@include inlineblock(); vertical-align:middle;}
  182. .logo{
  183. //width:210px; //padding-left:5px; //margin-left:50px;
  184. @include inlineblock();
  185. h1{
  186. margin:0;
  187. @include fs36;
  188. @include inlineblock(); vertical-align: baseline; position:relative; line-height:1.25;
  189. a:hover{text-decoration: none ;}
  190. }
  191. span.slogan{
  192. @include fs14;
  193. margin-top:-3px;
  194. margin-left:-0.5em;
  195. @include fs900;
  196. @media #{$small-only} {display:none;}
  197. @media #{$medium-only} {display:none;}
  198. .ie8 &{position: absolute; margin-top:22px;}
  199. }
  200. }
  201. #header-blocks{
  202. //position:absolute; right:0; bottom:0;
  203. padding-top:17px;
  204. float:right;
  205. text-align:right;
  206. text-transform: capitalize;
  207. >.region{
  208. @include inlineblock();vertical-align:middle;
  209. padding-right:1em; margin-right:1em;
  210. @media #{$small-only and $medium-only}{ padding-right:0.3em; margin-right:0.3em; }//change this
  211. border-right: 1px solid #707070;
  212. &:last-child{border:none; padding: 0; margin: 0;}
  213. }
  214. .block{
  215. @include inlineblock(); vertical-align:middle;
  216. h2{
  217. @include fs12;
  218. margin: 0; line-height: 1.2; font-weight: normal; }
  219. &:not(:last-child){
  220. padding-right:0.8em;
  221. @media #{$xlarge-only}{ padding-right:0.3em; } //change this
  222. }
  223. }
  224. #block-materio-user-front-link{
  225. a{
  226. @include fs12;
  227. // line-height: 1.2;
  228. }
  229. // i{ vertical-align: text-bottom; margin: 0 2px 0px 0;}
  230. span.text{ display:none; }
  231. }
  232. #block-user-login{
  233. @include fs12;
  234. text-align:left; position:relative;
  235. h2{
  236. padding-right:5px;
  237. // .icon-user;
  238. i{ vertical-align: text-bottom; margin: 0 2px 2px 0;}
  239. }
  240. form#user-login-form{
  241. position:absolute; overflow:hidden; right:0; margin: 0;
  242. height:0;
  243. @include transition-simply-prefix(height 0.3s ease-out);
  244. &>div{
  245. padding: 5px; margin: 5px;
  246. background-color: #e6e6e6; @include rounded(5px); @include drop-shadow(0, 0, 5px, 0.2);
  247. }
  248. .form-item{margin: 0; padding-bottom:5px;}
  249. label,input{
  250. margin: 0;
  251. @include fs10;
  252. }
  253. // label{width:30%;}
  254. input.form-text{
  255. width:150px; height:2em;
  256. }
  257. .form-actions{
  258. margin: 5px 0; padding: 0; background-color:transparent; text-align: right;
  259. input.form-submit{
  260. // @include fs12;
  261. @include fs16; padding: 0.1em 0.6em 0.2em; @include rounded(0.3em);
  262. font-weight:bold;
  263. margin-bottom:4px;
  264. border: 2px solid #E6DE1C; background-color:#E6DE1C; color:#fff; // noire/jaune
  265. @include shadowTextBtnBlack();
  266. }
  267. }
  268. div.newpass{
  269. text-align: right;
  270. a{
  271. @include fs11;
  272. color:#686868;
  273. text-transform: lowercase;
  274. }
  275. }
  276. // div.register a{
  277. // display:block; padding: 10px 5px; background-color: #ccf718; font-weight:bold; text-align: center; .14;
  278. // }
  279. }
  280. html.no-touch &:hover, &.hovered{
  281. form#user-login-form{
  282. height:300px;
  283. &>div{
  284. }
  285. z-index:$header-z-index;
  286. }
  287. }
  288. @media #{$small-only}{
  289. span.login{display:none;}
  290. } //change this
  291. }
  292. #block-ajax-register-ajax-register-block{
  293. @include fs12;
  294. text-transform: lowercase;
  295. }
  296. #block-logintoboggan-logintoboggan-logged-in{
  297. @include fs12;
  298. line-height:1.5;
  299. i{
  300. vertical-align: text-bottom;
  301. margin: 0 5px 1px 0;
  302. line-height:1;
  303. }
  304. a span.account{text-transform: lowercase;}
  305. a span.logout{display:none; margin-left:5px; }
  306. .fi-power{margin: 0 0.5em 0 0.5em;}
  307. // @media #{$large-only}{ .fi-power{display: none;} }
  308. @media #{$small-only}{a span.account{display:none;}}
  309. @media #{$medium-only}{a span.account{display:none;}}
  310. }
  311. #block-materio-flag-materio-flag-mylists-nav{
  312. position:relative;
  313. h2{
  314. margin: 0;
  315. @include fs12;
  316. line-height:1.5;
  317. i{line-height:1;}
  318. @media #{$small-only and $medium-only}{
  319. span.menu-title{display:none;}
  320. }
  321. }// @include fs700;
  322. section.mylists{
  323. position:absolute; z-index:20; background-color: rgba(255, 255, 255, 0.9); min-width:100%; margin: 0 0 0 -5px;
  324. @include rounded(3px); @include drop-shadow(-2px, 2px, 5px, 0.2);
  325. .ie8 &{background:#FFF;}
  326. ul{margin: 0;}
  327. li{
  328. list-style: none;
  329. @include fs12; @include fs700;
  330. padding: 0 10px; text-align: left; width:200px;
  331. height:0; overflow:hidden; @include transition-simply-prefix(height 0.3s ease-out);
  332. // height:15px; padding: 3px 10px;
  333. a, span.preview{white-space:nowrap; cursor:pointer;}
  334. a.open-list{max-width:150px;}
  335. span.count{
  336. @include fs300;
  337. padding: 0 5px;}
  338. span.preview, a.edit-list{padding-right:5px;}
  339. .no-touch &:not(:hover) {
  340. span.preview, a.edit-list{@include op-hidden;}
  341. }
  342. }
  343. }
  344. &:hover{
  345. section.mylists{
  346. padding-bottom:5px;
  347. li{height:15px; padding: 3px 10px; }
  348. }
  349. }
  350. h2{
  351. i{ vertical-align: text-bottom; margin: 0 2px 2px 0;}
  352. // @media #{$xlarge-up}{ i{display: none;} }
  353. @media #{$small-only}{ span.menu-title{display:none;} }
  354. }
  355. }
  356. #headerblock-right{
  357. .block{
  358. @include inlineblock; vertical-align: middle; padding:0;
  359. &:first-child{padding: 0;}
  360. }
  361. }
  362. #block-locale-language{
  363. // margin-left:1em;
  364. // border-left: 1px solid #707070;
  365. ul,li{
  366. margin:0;padding:0;list-style-type: none;
  367. @include fs12;
  368. line-height: 1;
  369. &.active{display:none;}
  370. }
  371. .ie8 &{padding-top:5px;}
  372. ul{padding-top:0.155em;}
  373. li{
  374. font-size: 0.9em;
  375. padding:0.33em 0.35em 0.3em;
  376. @include rounded(3px);
  377. &, >*{color:#fff; text-transform: uppercase;}
  378. background-color: #808080;
  379. @include transition-simply-prefix(background-color 0.3s ease-out);
  380. &:hover{background-color: #1A1A1A;}
  381. }
  382. }
  383. // #block-menu-menu-about{
  384. // position:relative;
  385. // ul.menu{
  386. // position:absolute; padding: 0 5px 5px 5px; margin: 0; width:100px; display:none; right:0; text-align: right;
  387. // background-color: #e6e6e6; @include rounded(5px);
  388. // li{
  389. // height:0;
  390. // overflow:hidden; list-style-type: none;
  391. // .transition-simply-prefix(height 0.3s ease-out");
  392. // a{
  393. // display:block; width:100%; padding:2px 5px; .12;
  394. // }
  395. // }
  396. // }
  397. // &:hover{
  398. // ul.menu{
  399. // display:block;
  400. // li{height:25px;}
  401. // }
  402. // }
  403. // }
  404. #block-menu-menu-top-menu{
  405. h2{
  406. .ie8 &{display:none;}
  407. i{ vertical-align: text-bottom; margin: 0 0 2px 0;}
  408. }
  409. ul.menu, li{
  410. @include fs12;
  411. list-style: none;
  412. .ie8 &{display: inline;}
  413. }
  414. // menu en ligne
  415. @media #{$medium-up}{
  416. h2{display:none;}
  417. ul.menu, li{
  418. @include inlineblock; vertical-align: middle;
  419. padding: 0; margin: 0;
  420. }
  421. a{padding: 0 0.5em 0 0;}
  422. } //change this
  423. //menu deroulant
  424. @media #{$small-only}{
  425. position:relative;
  426. h2 .menu-title{display: none;}
  427. .menu-wrapper{
  428. position:absolute; width:150px; display:none; right:0; padding-top:5px;
  429. ul.menu{
  430. background-color: #e6e6e6;
  431. @include rounded(5px); padding: 0 5px 5px 5px; margin: 0; text-align: right;
  432. li{
  433. height:0;
  434. overflow:hidden;
  435. @include transition-simply-prefix(height 0.3s ease-out);
  436. a{
  437. display:block; width:100%; padding:2px 5px; @include fs12;
  438. }
  439. }
  440. }
  441. }
  442. html.no-touch &:hover, &.hovered{
  443. z-index:$header-z-index;
  444. .menu-wrapper{
  445. display:block;
  446. ul.menu{li{height:25px;}}
  447. }
  448. }
  449. } //change this
  450. }
  451. #block-materio-user-old-database-link{
  452. a{
  453. @include fs12;
  454. ;}
  455. }
  456. }
  457. }
  458. /*
  459. __ _ ___ __ _
  460. __ __/ /_(_) (_) /_(_)__ _____
  461. / / / / __/ / / / __/ / _ \/ ___/
  462. / /_/ / /_/ / / / /_/ / __(__ )
  463. \__,_/\__/_/_/_/\__/_/\___/____/
  464. */
  465. #utilities{
  466. background-color: #fff;
  467. margin-top:$headerouterheight;
  468. .not-logged-in &{ overflow:hidden; }
  469. &>.inner{padding:0.5em 0;}
  470. &.closed{
  471. .tabs, .node-didactique{display:none;} height:0;
  472. }
  473. @media #{$small-only}{
  474. margin-top:0;
  475. }
  476. }
  477. /*
  478. _
  479. ____ ___ ____ _(_)___
  480. / __ `__ \/ __ `/ / __ \
  481. / / / / / / /_/ / / / / /
  482. /_/ /_/ /_/\__,_/_/_/ /_/
  483. */
  484. #main{
  485. body.home-v2 &{
  486. padding-top:$headerouterheight;
  487. }
  488. }
  489. /*
  490. __ _ __ ___ __ __ __
  491. / /_ (_)___ _/ /_ / (_)___ _/ /_ / /____ ____/ /
  492. / __ \/ / __ `/ __ \/ / / __ `/ __ \/ __/ _ \/ __ /
  493. / / / / / /_/ / / / / / / /_/ / / / / /_/ __/ /_/ /
  494. /_/ /_/_/\__, /_/ /_/_/_/\__, /_/ /_/\__/\___/\__,_/
  495. /____/ /____/
  496. */
  497. #highlighted{
  498. @include rounded(5px);
  499. @include drop-shadow(0, 0, 6px, 0.6);
  500. padding: 0.5em;
  501. position:relative;
  502. @media #{$medium-up}{
  503. margin: 20px 0 6px;
  504. .block{ @include inlineblock; vertical-align: top; }
  505. .block-materio-didactique{
  506. width:65%;
  507. .side{
  508. @include inlineblock(); vertical-align: top;
  509. position:relative; //height:100%;
  510. }
  511. .group-sideleft{ width:65%; }
  512. .group-sideright{ width:30%; }
  513. .field-name-title-field{@include fs24;}
  514. // .field-name-field-visuel{}
  515. .node.emvideo{
  516. .group-sideleft, .group-sideright{ width:47%; }
  517. .group-sideleft{margin-right:2%;}
  518. // .field-name-field-visuel{display:none;}
  519. }
  520. }
  521. #block-materio-user-user-register{
  522. width:30%; padding:5px; height:290px;
  523. }
  524. }
  525. @media #{$small-up}{
  526. .block-materio-didactique{
  527. .side{@include inlineblock(); vertical-align: top;}
  528. }
  529. }
  530. @media #{$small-only}{
  531. margin:10px 0 6px;
  532. .block-materio-didactique{
  533. .group-sideleft, .group-sideright{ width:100%; }
  534. .node-didactique{
  535. .field-name-title-field{
  536. @include fs20;
  537. font-weight:normal!important;
  538. // &:before{content:"- ";}
  539. &:after{
  540. content:"\a0\f10b";
  541. font-family: "foundation-icons";
  542. font-style: normal;
  543. font-weight: normal;
  544. font-variant: normal;
  545. text-transform: none;
  546. line-height: 1;
  547. -webkit-font-smoothing: antialiased;
  548. display: inline-block;
  549. text-decoration: inherit;
  550. font-size: 16px;
  551. }
  552. }
  553. }
  554. html.js & .node-didactique{
  555. height:auto;
  556. height:30px; overflow: hidden;
  557. &.opened{height:auto;}
  558. }
  559. }
  560. }
  561. // @media #{$small-only}{
  562. // .block-materio-didactique{
  563. // // .pt(150px);
  564. // .group-sideleft{ width:50%; }
  565. // .group-sideright{ width:50%; }
  566. // }
  567. // } //change this
  568. .oldie &{
  569. .block{@include inlineblock;}
  570. }
  571. .block-materio-didactique{
  572. // .ie8 &{max-width:850px; border: 1px solid #C6C6C6;}
  573. .node-didactique{
  574. @include fs14;
  575. background-color:#fff; //padding: 5px;
  576. margin: 0 auto;
  577. // .ie8 &{max-width:750px; margin-left:15px; margin-top:10px;}
  578. .side{position:relative;}
  579. .field-name-title-field{
  580. @include fs900;
  581. @include italic;
  582. padding:5px 0;
  583. }
  584. .field-name-field-visuel{
  585. text-align: center;
  586. figure, img{display:inline;}
  587. }
  588. &.emvideo{
  589. .field-name-field-visuel{display:none;}
  590. }
  591. // .field-name-field-emvideo{
  592. // a{
  593. // display:block; width:100%; height:100%;
  594. // background: transparent url(../img/vimeo-play-btn.png) no-repeat center center;
  595. // &:hover{background-image: url(../img/vimeo-play-btn-hover.png);}
  596. // img{max-width:100%;}
  597. .ie8 &{.player{display:none;}}
  598. // }
  599. // }
  600. }
  601. html.js &{
  602. position:relative;
  603. overflow: hidden;
  604. .slides{
  605. height:270px; margin: 0; position:relative; width:100%; overflow:hidden;
  606. .node-didactique{ @include layer(); }
  607. .field-name-title-field{ height:30px;}
  608. .group-column-wrapper{
  609. height:240px;
  610. .side{ height:100%; }
  611. .field-name-field-emvideo{
  612. $r:0.5625;
  613. @media #{$small-only} { $w:290px; width:$w; height:$w*$r; }
  614. @media #{$medium-only} { $w:216px; width:$w; height:$w*$r; }
  615. @media #{$large-only} { $w:216px; width:$w; height:$w*$r; }
  616. @media #{$xlarge-only} { $w:280px; width:$w; height:$w*$r; }
  617. @media #{$xxlarge-only} { $w:340px; width:$w; height:$w*$r; }//change this
  618. *{height:100%; width:100%;}
  619. }
  620. }
  621. }
  622. .tabs{
  623. height:30px; margin: 0; text-align:left;
  624. >*{
  625. @include inlineblock(); vertical-align: top ; padding:5px 10px; @include fs12; cursor:pointer; color:#bfbfbf;
  626. &:hover, &:focus, &.active{color:#3f3f3f;}
  627. }
  628. }
  629. }
  630. }
  631. }
  632. /*
  633. __ __ __ _ __
  634. / /_ / /___ _____/ /__ ________ ____ _(_)____/ /____ _____
  635. / __ \/ / __ \/ ___/ //_/ / ___/ _ \/ __ `/ / ___/ __/ _ \/ ___/
  636. / /_/ / / /_/ / /__/ ,< / / / __/ /_/ / (__ ) /_/ __/ /
  637. /_.___/_/\____/\___/_/|_| /_/ \___/\__, /_/____/\__/\___/_/
  638. /____/
  639. */
  640. #block-materio-user-user-register, #block-materio-user-user-createaccount{
  641. min-height:120px; padding: 5px;
  642. background: transparent url('../img/register-block.png') no-repeat 100% 90%;
  643. .ie8 &{max-width:250px; float:right; background-image:none;}
  644. h2, h3{@include fs900; @include italic; padding:5px 0; margin: 0; line-height: 1; background-color:#fff; @include inlineblock(); min-width:50%;}
  645. h2{@include fs24;} h3{@include fs16;}
  646. form{margin: 0; background-color: rgba(255, 255, 255, 0.7); padding-bottom:5px; @include inlineblock(); }
  647. .form-item, .form-wrapper{
  648. margin: 0; @include inlineblock; vertical-align: middle; position:relative;
  649. }
  650. #edit-account{margin-right:5px;}
  651. input.form-text{ @include fs12; @include rounded(5px); margin-bottom:4px;.ie8 &{margin-right:5px;}}
  652. .form-item-mail input.form-text, .form-item-name input.form-text{ width:11em;}
  653. .form-item-pass input.form-text{ width:7em;}
  654. #edit-mail-check{
  655. position:absolute; bottom:100%; z-index:9999; background-image: none;
  656. height:auto; //width:90%;
  657. padding: 5px; @include rounded(5px); margin-bottom:10px;
  658. @include fs11; background-color: #fff;
  659. @include drop-shadow(0, 0, 5px, 0.6);
  660. @include transition-simply-prefix(bottom 0.1s ease-out);
  661. &.error{
  662. background-color: #f3968d;
  663. // border: 2px solid #f30002;
  664. color:#fff;
  665. }
  666. &.ok{ display:none; }
  667. }
  668. .form-submit{
  669. //border: 2px solid #69CDCF; background-color:#69CDCF; color:#FF7400; // orange/bleu
  670. @include fs16; padding: 0.1em 0.6em 0.2em; @include rounded(0.3em);
  671. font-weight:bold;
  672. margin-bottom:4px;
  673. }
  674. .form-item-termsofservices, #edit-field-newsletter{
  675. margin-bottom:0; display:block; line-height: 1;
  676. &>*{ @include inlineblock; vertical-align: middle; margin: 0; }
  677. label{ @include fs10; background-color: #fff; @include rounded(3px); }
  678. }
  679. #user-register-form{
  680. .form-submit{
  681. border: 2px solid #69CDCF; background-color:#69CDCF; color:#fff; // blanc/bleu
  682. @include shadowTextBtnBlack();
  683. &[disabled]{
  684. background-color:#ddd; border: 2px solid #ddd;
  685. }
  686. }
  687. }
  688. #user-login{
  689. .form-submit{
  690. border: 2px solid #E6DE1C; background-color:#E6DE1C; color:#fff; // noire/jaune
  691. @include shadowTextBtnBlack();
  692. }
  693. }
  694. #edit-simplenews{
  695. padding-top:0.5em;
  696. .fieldset-description{
  697. @include fs12;
  698. }
  699. .form-checkboxes{
  700. .form-item{
  701. display:block;
  702. label{@include fs12;}
  703. }
  704. }
  705. }
  706. a.join{
  707. // @include inlineblock();
  708. display:block;
  709. // margin: 10px 0;
  710. width:5em;
  711. @include fs16; padding: 0.1em 0.3em 0.2em; @include rounded(0.3em);
  712. font-weight:bold;
  713. border: 2px solid #69CDCF; background-color:#69CDCF; color:#fff; // blanc/bleu
  714. @include shadowTextBtnBlack();
  715. text-align: center; text-decoration: none;
  716. }
  717. @media #{$small-only}{
  718. background-position: 160% 50%;
  719. .form-item-mail input.form-text, .form-item-name input.form-text{ width:7em;}
  720. min-height:60px; padding: 15px 0;
  721. // #user-login, >h3:first-child, >h3 span{ display:none; }
  722. }
  723. .message-error{
  724. color:#b94a48; @include fs12;
  725. }
  726. .modal-content &{
  727. padding: 2em;
  728. width:400px;
  729. background-color: #fff;
  730. padding:5px;
  731. @include rounded(5px);
  732. @include drop-shadow(0, 0, 7px, 0.4);
  733. #user-register-form{
  734. // hide honeypot field, because drupal.attachbehavior() doesn't work
  735. div.homepage-textfield{display:none;}
  736. .description{
  737. @include fs12;
  738. }
  739. }
  740. }
  741. }
  742. /*
  743. __ __ __
  744. _________ ____ / /____ ____ / /_ / /_____ ____
  745. / ___/ __ \/ __ \/ __/ _ \/ __ \/ __/_____/ __/ __ \/ __ \
  746. / /__/ /_/ / / / / /_/ __/ / / / /_/_____/ /_/ /_/ / /_/ /
  747. \___/\____/_/ /_/\__/\___/_/ /_/\__/ \__/\____/ .___/
  748. /_/
  749. */
  750. #content-top{
  751. // padding-left:50px;
  752. /*
  753. ___ _ _ _ _
  754. | _| |___ ___ ___| |_|___| |_
  755. | _| | .'| . |___| | |_ -| _|
  756. |_| |_|__,|_ | |_|_|___|_|
  757. |___|
  758. */
  759. #block-materio-flag-materio-flag-mybookmarks, #block-materio-flag-materio-flag-mylists{
  760. // padding:5px 0;
  761. @include fs10; color:#666666; @include fs300;
  762. .ie8 &{margin-top:40px;}
  763. h2{
  764. @include fs12; @include fs700; margin: 0; line-height:1.2; color:#000;
  765. a.open-list, i.fi-xicon-remove{
  766. @include inlineblock(); cursor:pointer; color:#000;
  767. opacity:0; @include transition-simply-prefix(opacity 0.1s ease-out);
  768. }
  769. }
  770. &:hover{
  771. a.open-list, i.fi-x{
  772. opacity:1;
  773. }
  774. }
  775. span.listname[name=bookmarks]{
  776. cursor:pointer;
  777. }
  778. section.bookmarks{
  779. height:0; overflow:hidden;
  780. &.active{
  781. height:auto;
  782. }
  783. article.node.vm-bookmark{
  784. overflow:hidden;
  785. }
  786. }
  787. .mylists{
  788. // .transition-simply-prefix(height 0.3s ease-out);
  789. section{
  790. h2, .flaged{
  791. height:0; overflow: hidden;
  792. }
  793. &.active{
  794. h2, .flaged{
  795. height:auto;
  796. }
  797. }
  798. }
  799. }
  800. // .js & .mybookmarks{display:none;}
  801. }
  802. }
  803. #tool-bar{
  804. // margin-left:50px;
  805. position:relative;
  806. .inner-content{
  807. padding-top:10px; padding-bottom:10px;
  808. &>*{
  809. @include inlineblock();
  810. vertical-align: middle ;
  811. // height:35px;
  812. // margin: 5px;
  813. }
  814. @media #{$small-only}{
  815. padding:0; h1{line-height:0.5;}
  816. }
  817. }
  818. // text-align:right;
  819. // >*{ text-align: left ;}
  820. // .block{
  821. // .inlineblock();
  822. // margin:0 0 0 20px;
  823. // }
  824. .oldie &{background-color:#B1ADAD; padding:0 10px;}
  825. .btn-group{
  826. padding: 0; @include rounded(3px); @include bgc(#fff); margin:4px;
  827. @include shadowBtn();
  828. }
  829. #block-materio-page-title-materio-page-title{
  830. // .ie8 &{margin-top:40px;}
  831. margin: 0 10px 0 0;
  832. h1{ margin: 0;
  833. @include fs24; text-transform: capitalize; @include fs300;
  834. // line-height:1;
  835. }
  836. i{ vertical-align: middle ; margin-right:5px;}
  837. // i.icon-materio-folder{line-height: 1.3;}
  838. a.edit-list{
  839. @include op-hidden;
  840. i{ margin: 0 0 0 5px;}
  841. }
  842. &:hover{
  843. a.edit-list{ @include op-visible; }
  844. }
  845. @media #{$medium-only}{
  846. display:block;
  847. }
  848. }
  849. #block-materio-search-api-materio-search-api-viewmode{
  850. .viewmode-link{
  851. @include inlineblock(); margin:0 2px;
  852. &.active{cursor:normal;}
  853. .inner{display:none;@include fs10; }
  854. }
  855. @media #{$small-only}{
  856. .viewmode-link{ display:block; &:not(.active){display:none;} }
  857. }
  858. @media #{$small-only}{
  859. html.no-touch &:hover, &.hovered{ .viewmode-link.viewmode-cardsmall, .viewmode-link.viewmode-cardmedium{display:block;} }
  860. }
  861. @media #{$small-only}{
  862. html.no-touch &:hover, &.hovered{ .viewmode-link.viewmode-cardsmall, .viewmode-link.viewmode-cardmedium, .viewmode-link.viewmode-cardbig{display:block;} }
  863. }
  864. }
  865. #block-materio-search-api-materio-search-api-search{
  866. // @include inlineblock(); vertical-align: middle ;
  867. // position:absolute; top:10px; right:0;
  868. float:right;
  869. >.inner{
  870. @include inlineblock(); margin:0 0 0 10px;
  871. padding: 3px 10px; background-color:#fff; @include rounded(3px);
  872. @include shadowBtn(); text-align: right;
  873. }
  874. }
  875. #materio-search-api-search-form{
  876. text-align: right;
  877. @include inlineblock(); margin: 0;
  878. .form-item, input, .form-checkboxes{@include inlineblock(); margin:0; vertical-align:middle; padding:0;}
  879. .form-checkboxes{
  880. padding: 3px; @include fs12;
  881. .form-item{
  882. margin:0 5px;
  883. label{@include fs10;}
  884. }
  885. }
  886. input#edit-searchfield{
  887. border: 1px solid #ccc; @include rounded(15px);
  888. margin:3px 0 3px 3px; padding: 4px 5px; height:20px;
  889. @include fs12; line-height:1;
  890. background-position: 100% 7px;
  891. // width:100%;
  892. &.throbbing { background-position: 100% -15px; }
  893. }
  894. #edit-searchfield-autocomplete-aria-live{
  895. .oldie &{
  896. background-color:#1a1a1a;
  897. }
  898. };
  899. input#edit-create{ padding: 3px; }
  900. &.loading{
  901. background: transparent url('../img/ajax-loader.gif') no-repeat 98% center;
  902. input#edit-create{ visibility: hidden; }
  903. }
  904. @media #{$small-only}{
  905. input#edit-searchfield{width:16em;}
  906. #edit-bundles-filter{display:none;}
  907. }
  908. }
  909. }
  910. #center{
  911. // background-color: #e6e6e6;
  912. @include rounded(10px);
  913. .node-type-page:not(.page-node-11187) &{ background-color:#fff; }
  914. .ie8 &{height:100%; margin-top:20px;}
  915. }
  916. #content{
  917. padding:1em;
  918. @include transition-simply-prefix(height 0.3s ease-out);
  919. &.faded{
  920. opacity:0.5;
  921. @include transition-simply-prefix(opacity 0.3s ease-out);
  922. }
  923. .materiobase-results, .materiobase-actuality, .materio-flags-list{
  924. padding:0 0 30px 0; margin:0 0 20px 0;
  925. &.loading{
  926. background-image: url('../img/ajax-loader.gif');
  927. background-position: center bottom;
  928. background-repeat: no-repeat;
  929. }
  930. p.search-performance, p.flaglist-infos, p.actualities-infos{
  931. @include fs12; @include fs500; margin: 0;
  932. padding:10px 0 5px 15px;
  933. }
  934. // p.search-performance{.role-7 & {@include fs12;}}
  935. .search-results, .actuality-items, .flaglist-items{
  936. font-size:0;
  937. >*{font-size:16px;}
  938. text-align:center;
  939. >*{text-align:left;}
  940. }
  941. }
  942. ul.pager{
  943. padding: 1em 0; text-align: left;
  944. .ie8 &{position:absolute; left:37px; bottom: 35px;}
  945. li{margin:0; @include inlineblock(); vertical-align: middle;}
  946. .pager-current, a{color:#000;@include fs12; }
  947. .pager-current{@include fs900; @include fs14;.ie8 &{background:#fff; padding:0.3em 1em 0.3em 1em; margin-top:0.05em; border: 1px solid #333333;}}
  948. .pager-first, .pager-previous, .pager-next, .pager-last{ a{ @include fs24; @include fs300; } }
  949. // html.js & {display:none;}
  950. }
  951. .node-type-page &{
  952. // padding-left:15px;
  953. }
  954. }
  955. /** #content-bottom */
  956. #content-bottom{
  957. padding-top:10px;
  958. }
  959. /*
  960. _________ ____ ____ _____
  961. / ____/ | / __ \/ __ \/ ___/
  962. / / / /| | / /_/ / / / /\__ \
  963. / /___/ ___ |/ _, _/ /_/ /___/ /
  964. \____/_/ |_/_/ |_/_____//____/
  965. */
  966. $cardbookmark_w:50px;
  967. $cardbookmark_h:70px;
  968. $cardsmall_w:100px;
  969. $cardsmall_h:140px;
  970. $cardmedium_w:210px;
  971. $cardmedium_h:295px;
  972. $cardbig_w:425px;
  973. $cardbig_h:610px;
  974. $cardfull_w:850px;
  975. $cardfull_h:610px;
  976. @mixin card-box($w, $h){
  977. width:$w; height:$h;
  978. @include inlineblock(); position:relative; margin:7px;
  979. @include rounded(5px); background-color: #FFF;
  980. @include drop-shadow(0, 0, 5px, 0.2);
  981. @include transition-simply-prefix(box-shadow 0.3s ease-out); // opacity 0.3s ease-out); //change this commas
  982. }
  983. @mixin card($w, $h){
  984. @include card-box($w, $h);
  985. >div.side{
  986. @include rounded(5px); overflow: hidden;
  987. }
  988. // .no-touch &:hover{ @include drop-shadow(0, 0, 5px, 0.7); }
  989. &.focused{ @include drop-shadow(0, 0, 7px, 0.9); }
  990. &.just-added{ opacity:0; }
  991. &.associated{
  992. @include transition-simply-prefix(margin 0.3s ease-out);
  993. &.just-added{margin-left:-$w;margin-right:$w;}
  994. .modal-content &{
  995. position:absolute;
  996. top:0; left:0;
  997. z-index:999;
  998. }
  999. }
  1000. &.removed{
  1001. @include transition-simply-prefix(width 0.3s ease-out);
  1002. width:0; padding-left:0; padding-right:0; margin-right:0; margin-left:0; overflow:hidden;
  1003. }
  1004. // TODO: how to show that a card was flaged ?
  1005. // .search-results &.flaged, .actuality-items &.flaged{
  1006. // border: 2px solid rgba(0,0,0, 0.3); margin: 3px;
  1007. // @include drop-shadow(0, 0, 3px, 0.6);
  1008. // }
  1009. nav.nav{
  1010. position:absolute; top:0; right:0; z-index:11;
  1011. padding: 5px 0;
  1012. @include border-radius(0, 5px, 0, 3px);
  1013. @include fs11;
  1014. // colors
  1015. // background-color: rgba(10, 10, 10, 0.9); color:#fff;
  1016. // a{color:#fff;}
  1017. //ul{background-color: rgba(10, 10, 10, 0.9);}
  1018. background-color: rgba(255, 255, 255, 0.9); color:#000;
  1019. a{color:#000;}
  1020. ul{background-color: rgba(255, 255, 255, 0.9);}
  1021. span.op{@include fs900; @include fs14;}
  1022. ul{padding: 0; margin: 0;}
  1023. section{
  1024. position:relative;
  1025. &>i{margin: 0 5px; &:hover{cursor:pointer;}}
  1026. }
  1027. ul{
  1028. position:absolute; right:0; top:0; margin-right:22px; min-width:80px; padding: 0; display:block;
  1029. @include rounded(3px); @include drop-shadow(-2px, 2px, 5px, 0.2);
  1030. // padding: 5px 10px;
  1031. li{
  1032. padding: 0; margin: 0; line-height:1; display:block;
  1033. height:0; overflow:hidden; @include transition-simply-prefix(height 0.2s ease-out);
  1034. // height:15px; overflow:hidden;
  1035. a{ display:block;}
  1036. }
  1037. &.links{
  1038. a{font-size:12px;}
  1039. }
  1040. &.flag-lists-entity-links{
  1041. width:160px;
  1042. font-size:0;
  1043. >*{font-size:11px;}
  1044. // &.loading{
  1045. // a{visibility: hidden;}
  1046. // background: transparent url('../img/ajax-loader.gif') no-repeat 98% center;
  1047. // }
  1048. li{
  1049. @include inlineblock(); min-width:48%; max-width:98%; padding-left:2px;
  1050. a{
  1051. color:#a6a6a6; @include transition-simply-prefix(color 0.2s ease-out);
  1052. &:hover, &.unflag-action{
  1053. color:#000; text-decoration: none;
  1054. }
  1055. }
  1056. &.flag-lists-create{
  1057. display:block; width:100%;
  1058. >*{ margin-top:1px; padding-top:1px; border-top:1px solid #e6e6e6;}
  1059. a{color:#000;}
  1060. }
  1061. &.loading{
  1062. a{visibility: hidden;}
  1063. background: transparent url('../img/ajax-loader.gif') no-repeat 98% center;
  1064. }
  1065. }
  1066. }
  1067. .ie8 &{background:#FFF;}
  1068. }
  1069. section:hover{
  1070. ul{
  1071. padding: 5px 5px;
  1072. li{height:17px;}
  1073. &.flag-lists-entity-links{
  1074. // width:160px;
  1075. }
  1076. }
  1077. }
  1078. // display:none;
  1079. }
  1080. // &:hover{nav.nav{display:block;}}
  1081. div.workflow{
  1082. position:absolute; top:0; left:0; z-index:11;
  1083. padding: 5px;
  1084. @include border-radius(5px, 0, 3px, 0);
  1085. @include fs11; vertical-align: top;
  1086. background-color: rgba(255, 255, 255, 0.9); color:#000;
  1087. span{padding: 3px 0 0 4px; @include inlineblock();}
  1088. }
  1089. .field-name-field-description .upgrade{
  1090. @include fs12;
  1091. padding-top:4em;margin-top:-4.5em;
  1092. // .bgc(rgba(255,255,255,0.6));
  1093. background : linear-gradient(to bottom, rgba(255,255,255,0) 0%, #fff 4em);
  1094. position:relative;
  1095. }
  1096. .side.oops p, .side .upgrade p{
  1097. padding: 10px; @include fs12;
  1098. a{
  1099. display:block; margin: 10px 0;
  1100. @include fs18; padding: 0.1em 0.6em 0.2em; @include rounded(0.3em);
  1101. font-weight:bold;
  1102. border: 2px solid #69CDCF; background-color:#69CDCF; color:#fff; // blanc/bleu
  1103. @include shadowTextBtnBlack();
  1104. text-align: center; text-decoration: none;
  1105. }
  1106. }
  1107. }// .card()
  1108. /*
  1109. _ _ ___
  1110. ___ ___ ___ _| | ___ ___ ___ ___ ___| |_ ___ ___ ___| _|___ ___ _____ ___ ___ ___ ___
  1111. | _| .'| _| . | |_ -| -_| .'| _| _| | | . | -_| _| _| . | _| | .'| | _| -_|
  1112. |___|__,|_| |___| |___|___|__,|_| |___|_|_| | _|___|_| |_| |___|_| |_|_|_|__,|_|_|___|___|
  1113. |_|
  1114. */
  1115. article.search-performance{
  1116. .inner{
  1117. padding: 1em;
  1118. }
  1119. p{@include fs14;}
  1120. a.button{
  1121. display:block; margin: 10px auto; max-width:10em;
  1122. @include fs18; padding: 0.1em 0.6em 0.2em; @include rounded(0.3em);
  1123. font-weight:bold;
  1124. border: 2px solid #69CDCF; background-color:#69CDCF; color:#fff; // blanc/bleu
  1125. @include shadowTextBtnBlack();
  1126. text-align: center; text-decoration: none;
  1127. }
  1128. &.view-mode-cardsmall{
  1129. @include card-box(327px, 140px);
  1130. }
  1131. &.view-mode-cardmedium{
  1132. @include card-box(210px, 295px);
  1133. .inner{
  1134. padding: 4em 1em 0;
  1135. }
  1136. }
  1137. &.view-mode-cardbig{
  1138. @include card-box(425px, 115px);
  1139. display:block; margin:0 auto;
  1140. }
  1141. &.view-mode-cardfull{
  1142. @include card-box(850px, 115px);
  1143. .inner{
  1144. padding: 1em 212px;
  1145. }
  1146. display:block; margin:0 auto;
  1147. }
  1148. }
  1149. /*
  1150. _____ _____ _____ ____ _____ _____ _____ _____ _____ _____ _____ _____ _____
  1151. | | _ | __ | \ | __ | | | | | | _ | __ | | | __|
  1152. | --| | -| | | | __ -| | | | | -| | | | | -| -|__ |
  1153. |_____|__|__|__|__|____/ |_____|_____|_____|__|__|_|_|_|__|__|__|__|__|__|_____|
  1154. */
  1155. article.node-materiau.vm-bookmark, article.node-breve.vm-bookmark{
  1156. @include card($cardbookmark_w, $cardbookmark_h);
  1157. margin:3px;
  1158. .group-header{
  1159. display:none;
  1160. }
  1161. .group-images{ @include horihoverswitch(); }
  1162. // nav.nav{top:0;}
  1163. div.workflow{display:none;}
  1164. }
  1165. /*
  1166. _____ _____ _____ ____ _____ _____ _____ __ __
  1167. | | _ | __ | \ | __| | _ | | | |
  1168. | --| | -| | | |__ | | | | | |__| |__
  1169. |_____|__|__|__|__|____/ |_____|_|_|_|__|__|_____|_____|
  1170. */
  1171. article.node-materiau.vm-cardsmall, article.node-breve.vm-cardsmall{
  1172. @include card($cardsmall_w, $cardsmall_h); //width:100px; height:140px;
  1173. .group-header{
  1174. display:none; position:absolute;
  1175. @include fs14; @include fs500;
  1176. .field-name-title-field{@include fs700;}
  1177. .field-name-field-reference-materio, .field-name-field-localisation{ @include inlineblock(); @include fs12; }
  1178. .field-name-field-localisation{ float:right; }
  1179. }
  1180. .group-images{ @include horihoverswitch(); @include rounded(5px); overflow:hidden; }
  1181. nav.nav{
  1182. ul.flag-lists-entity-links{
  1183. width:75px; min-width:75px;
  1184. li{width:98%;}
  1185. }
  1186. .ie8 &{background: #FFF}
  1187. }
  1188. .no-touch &:not(.focused) nav.nav{@include op-hidden;}
  1189. .no-touch &:not(.focused) div.workflow{@include op-hidden;}
  1190. }
  1191. /*
  1192. _____ _____ _____ __ _____ _____ _____ _____ _____ _____ __ __ _____ _____ _____ ____
  1193. |_ _| | | ||_ _| | _ | | __| | _ | | | | | | _ | __ | \
  1194. | | | | | | | |__| | |- -| __| |__ | | | | | |__| |__ | --| | -| | |
  1195. |_| |_____|_____|_____|_| |_____|__| |_____|_|_|_|__|__|_____|_____| |_____|__|__|__|__|____/
  1196. */
  1197. #tooltip{
  1198. .group-header.smallcard{
  1199. @include fs14; @include fs500;
  1200. .field-name-title-field{@include fs700;}
  1201. .field-name-field-reference-materio, .field-name-field-localisation{ @include inlineblock(); @include fs12; }
  1202. .field-name-field-localisation{ float:right; }
  1203. }
  1204. }
  1205. /*
  1206. _____ _____ _____ ____ _____ _____ ____ _____ _____ _____
  1207. | | _ | __ | \ | | __| \| | | | |
  1208. | --| | -| | | | | | | __| | |- -| | | | | |
  1209. |_____|__|__|__|__|____/ |_|_|_|_____|____/|_____|_____|_|_|_|
  1210. */
  1211. article.node-materiau.vm-cardmedium, article.node-breve.vm-cardmedium{
  1212. @include card($cardmedium_w, $cardmedium_h); //width:210px; height:295px;
  1213. .side{
  1214. @include layer(); background-color:#fff; cursor:pointer;
  1215. &:nth-child(2){z-index:1;}
  1216. }
  1217. .group-header{
  1218. position:absolute; bottom:0; z-index:2;
  1219. width:190px; padding:5px 15px 5px 5px; min-height:55px;
  1220. @include fs20; @include fs300; line-height:1;
  1221. .field-name-title-field{@include fs700;}
  1222. .field-name-field-nature-titre{@include fs14;}
  1223. @include bgcWhite();
  1224. @include border-radius(0, 0, 4px, 4px); overflow: hidden;
  1225. .field-name-field-reference-materio, .field-name-field-localisation, .field-name-field-authored-on{ @include inlineblock(); @include fs12; vertical-align: bottom; width:48%;}
  1226. .field-name-field-localisation{ text-align: right; }
  1227. .ie8 &{background:#fff; font-color:#000; line-height: 1em; padding: 10px;}
  1228. }
  1229. &.node-breve .group-header{
  1230. // @include fs20; @include fs300; line-height:1.1;
  1231. color:#fff; @include bgcBlack();
  1232. .field-name-field-authored-on{ @include fs12; @include fs500; }
  1233. .ie8 &{background:#000; font-size:15px; line-height: 1.2em;}
  1234. }
  1235. // &:hover .group-header{
  1236. // .bgcWhiteParentHover();
  1237. // }
  1238. .group-images{ @include horihoverswitch(); }
  1239. // side 2
  1240. .field-name-field-description, .field-name-body{
  1241. @include fs12; @include fs300; overflow: hidden; z-index:-1; @include columnized(5px);
  1242. .column>*{padding-right:25px;}
  1243. }
  1244. // side 3
  1245. .column-wrapper{
  1246. @include columnized(5px);
  1247. }
  1248. .field-name-field-company-fab, .field-name-field-company-distrib{
  1249. @include fs12; padding:5px; @include fs300;
  1250. .field-label{ @include fs10; text-transform: lowercase; margin:0;}
  1251. .field-name-field-tode-company{@include fs14;}
  1252. // span.print-link{display:none;}
  1253. }
  1254. .field-name-field-materiau-ref, .field-name-field-source, .field-name-field-attachments{
  1255. @include fs12; padding: 5px; @include fs300; a{color:#000;}
  1256. }
  1257. .field-label{@include fs900; margin: 1em 0 0.5em;}
  1258. // nav
  1259. .no-touch &:not(.focused) nav.nav{@include op-hidden;}
  1260. .no-touch &:not(.focused) div.workflow{@include op-hidden;}
  1261. .ie8 &{nav.nav{background: #FFF}}
  1262. }
  1263. /*
  1264. _____ _____ _____ ____ _____ _____ _____
  1265. | | _ | __ | \ | __ | | __|
  1266. | --| | -| | | | __ -|- -| | |
  1267. |_____|__|__|__|__|____/ |_____|_____|_____|
  1268. */
  1269. article.node-materiau.vm-cardbig, article.node-breve.vm-cardbig{
  1270. @include card($cardbig_w, $cardbig_h); //width:425px; height:610px;
  1271. .side{
  1272. @include layer(); background-color:#fff; height:270px; top:340px; cursor:pointer;
  1273. &:nth-child(2){z-index:1;}
  1274. }
  1275. .group-side1{position:relative; @include border-radius(5px, 5px, 0, 0); overflow:hidden;}
  1276. .group-header{
  1277. position:absolute; bottom:0; z-index:2;
  1278. width:405px; padding:10px;
  1279. @include fs20; @include fs300; line-height: 1.1;
  1280. .field-name-title-field{@include fs700;}
  1281. .field-name-field-nature-titre{@include fs14;}
  1282. @include bgcWhite();
  1283. .field-name-field-reference-materio, .field-name-field-localisation, .field-name-field-authored-on { @include inlineblock(); @include fs12; vertical-align: bottom; width:48%;}
  1284. .field-name-field-localisation{ text-align: right; }
  1285. .ie8 &{background:#fff; font-color:#000; line-height: 1em; padding: 20px; border-bottom: 1px solid #C6C6C6;}
  1286. }
  1287. // &:hover .group-header{ .bgcWhiteParentHover(); }
  1288. &.node-breve .group-header{
  1289. color:#fff; @include bgcBlack();
  1290. .field-name-field-authored-on{ @include fs12; @include fs500; }
  1291. .ie8 &{background:#000; font-color:#fff; line-height: 1em; padding: 20px;}
  1292. }
  1293. .group-images{ @include horihoverswitch(); height:auto;}
  1294. // side 2
  1295. .field-name-field-description, .field-name-body{
  1296. @include fs12; @include fs300; @include columnized(10px);
  1297. }
  1298. // side 3
  1299. .column-wrapper{
  1300. @include columnized(10px);
  1301. }
  1302. // side 4
  1303. .field-name-field-company-fab, .field-name-field-company-distrib{
  1304. @include fs12; padding:10px; @include fs300;
  1305. .field-label{ @include fs10; text-transform: lowercase; float: none; }
  1306. .field-name-field-tode-company{@include fs14;}
  1307. }
  1308. .field-name-field-materiau-ref, .field-name-field-source, .field-name-field-attachments{
  1309. @include fs12; padding: 10px; @include fs300; a{color:#000;}
  1310. }
  1311. .field-label{@include fs900; margin: 0 0 0.5em;}
  1312. // nav
  1313. // nav.nav{ margin: 5px; }
  1314. .ie8 &{nav.nav{background: #FFF}}
  1315. // upgarde and full
  1316. .side.oops p, .side .upgrade p{
  1317. padding: 3em;
  1318. a{
  1319. border: 2px solid #eee; background-color:#eee; color:#fff;
  1320. @include transition-simply-prefix(border 0.3s ease-out);
  1321. @include transition-simply-prefix(background-color 0.3s ease-out);
  1322. }
  1323. }
  1324. &:hover .side.oops p, &:hover .side .upgrade p{
  1325. a{
  1326. border: 2px solid #69CDCF; background-color:#69CDCF;
  1327. }
  1328. }
  1329. }
  1330. /*
  1331. _____ _____ _____ ____ _____ _____ __ __
  1332. | | _ | __ | \ | __| | | | | |
  1333. | --| | -| | | | __| | | |__| |__
  1334. |_____|__|__|__|__|____/ |__| |_____|_____|_____|
  1335. */
  1336. article.node-materiau.vm-cardfull, article.node-breve.vm-cardfull{
  1337. @include card($cardfull_w, $cardfull_h); //width:875px; height:610px;
  1338. nav.nav{top:0;}
  1339. font-size:0px;
  1340. >*{@include fs16;}
  1341. >.side{@include inlineblock(); width:50%;
  1342. &.group-side-left{
  1343. @include border-radius(5px, 0, 0, 5px);
  1344. }
  1345. &.group-side-right{
  1346. @include border-radius(0, 5px, 5px, 0);
  1347. }
  1348. }
  1349. .group-images{ @include horihoverswitch(); }
  1350. .group-header{
  1351. @include fs20; @include fs300; padding:10px;
  1352. .field-name-title-field{@include fs700;}
  1353. .field-name-field-reference-materio, .field-name-field-localisation, .field-name-field-authored-on{ @include inlineblock(); @include fs12; padding-right:15px;}
  1354. // .field-name-field-localisation{ float:right; }
  1355. }
  1356. &.node-breve .group-header{
  1357. color:#fff; @include bgcBlack();
  1358. .field-name-field-authored-on{ @include fs500; }
  1359. }
  1360. .field-name-field-description, .field-name-body{
  1361. @include fs12; @include fs300; padding: 10px;
  1362. }
  1363. .field-name-field-attachments{
  1364. padding: 10px;
  1365. @include fs12;
  1366. }
  1367. // side 4
  1368. .field-name-field-company-fab, .field-name-field-company-distrib{
  1369. @include fs12; padding:10px; @include fs300;
  1370. @include inlineblock(); width:40%;
  1371. .field-item{margin-top:1em;}
  1372. .field-label{ @include fs10; text-transform: lowercase; float: none; }
  1373. .field-name-field-tode-company{@include fs14;}
  1374. }
  1375. .field-name-field-materiau-ref, .field-name-field-source, .field-name-field-attachments{
  1376. @include fs12; padding: 10px; @include fs300; a{color:#000;}
  1377. }
  1378. .field-label{@include fs900; margin: 0 0 0.5em;}
  1379. // nav
  1380. nav.nav{ margin: 5px; }
  1381. div.workflow{ margin: 5px; }
  1382. // upgarde and full
  1383. .side.oops p, .side .upgrade p{
  1384. padding: 3em;
  1385. a{
  1386. border: 2px solid #eee; background-color:#eee; color:#fff;
  1387. @include transition-simply-prefix(border 0.3s ease-out);
  1388. @include transition-simply-prefix(background-color 0.3s ease-out);
  1389. }
  1390. }
  1391. &:hover .side.oops p, &:hover .side .upgrade p{
  1392. a{
  1393. border: 2px solid #69CDCF; background-color:#69CDCF;
  1394. }
  1395. }
  1396. }
  1397. /*
  1398. _ _ _
  1399. ___ ___ ___ _| | ___ ___|_|___| |_
  1400. | _| .'| _| . | | . | _| | | _|
  1401. |___|__,|_| |___| | _|_| |_|_|_|_|
  1402. |_|
  1403. */
  1404. body.print-node-materiau{
  1405. margin:2em;
  1406. }
  1407. .print-content .node-materiau{
  1408. @include card($cardfull_w, auto);
  1409. padding:1em; margin:0;
  1410. .field-name-title-field{@include fs500;@include fs36;}
  1411. // .field-name-field-reference-materio, .field-name-field-localisation, .field-name-field-authored-on{ @include inlineblock(); @include fs12; padding-right:15px;}
  1412. .field-name-field-nature-titre{
  1413. @include fs500;@include fs24; margin-bottom: 0.5em;
  1414. }
  1415. .group-head-right{
  1416. position:absolute;
  1417. top:0; right:0;
  1418. padding:1em;
  1419. text-align: right;
  1420. }
  1421. .side{@include inlineblock(); width:50%;
  1422. &.group-side-left{
  1423. // @include border-radius(5px, 0, 0, 5px);
  1424. }
  1425. &.group-side-right{
  1426. @include border-radius(5px, 5px, 5px, 5px);
  1427. .field-name-field-materiau-image{
  1428. // padding-left:1em;
  1429. float:right;
  1430. }
  1431. // , .field-items, .field-item{
  1432. // @include inlineblock();
  1433. // }
  1434. }
  1435. }
  1436. .field-name-field-tode-company{
  1437. font-size: 1.5em; font-weight: 700;
  1438. }
  1439. .field-name-field-description,
  1440. .field-name-field-company-fab,
  1441. .field-name-field-reference-distrib
  1442. {
  1443. padding-bottom: 1em;
  1444. }
  1445. }
  1446. /*
  1447. ____ ____ _____ ________
  1448. / __ \/ __ \/ _/ | / /_ __/
  1449. / /_/ / /_/ // // |/ / / /
  1450. / ____/ _, _// // /| / / /
  1451. /_/ /_/ |_/___/_/ |_/ /_/
  1452. */
  1453. .print-site_name{
  1454. width:100%;
  1455. vertical-align: bottom;
  1456. margin-bottom:1em;
  1457. h1{
  1458. margin:0;
  1459. @include fs36;
  1460. @include inlineblock(); vertical-align: baseline; position:relative; line-height:1.25;
  1461. a{
  1462. color:inherit;
  1463. &:hover{text-decoration: none ;}
  1464. }
  1465. }
  1466. span.slogan{
  1467. @include fs14;
  1468. margin-top:-3px;
  1469. margin-left:-0.5em;
  1470. @include fs900;
  1471. .ie8 &{position: absolute; margin-top:22px;}
  1472. }
  1473. }
  1474. .print-content{
  1475. margin-bottom: 1em;
  1476. }
  1477. .print-footer{
  1478. margin-bottom: 2em;
  1479. }
  1480. /*
  1481. ___ __ ____________ __________ __ _______ __ __________________
  1482. / | / / / /_ __/ __ \/ ____/ __ \/ |/ / __ \/ / / ____/_ __/ ____/
  1483. / /| |/ / / / / / / / / / / / / / / /|_/ / /_/ / / / __/ / / / __/
  1484. / ___ / /_/ / / / / /_/ / /___/ /_/ / / / / ____/ /___/ /___ / / / /___
  1485. /_/ |_\____/ /_/ \____/\____/\____/_/ /_/_/ /_____/_____/ /_/ /_____/
  1486. */
  1487. #autocomplete{
  1488. border: 0; @include rounded(3px);
  1489. background-color: rgba(0,0,0,0.6);
  1490. text-align: left;
  1491. margin-left: 2px;
  1492. .oldie &{background-color:#545454;}
  1493. li{
  1494. color:#FFF; background-color: transparent;
  1495. &.selected{background-color: rgba(0,0,0,0.8);}
  1496. div{padding:0.1em 5px;} @include fs12;
  1497. }
  1498. }
  1499. /**
  1500. * the old modal api (balck bg) for contextual forms (create new flag list)
  1501. */
  1502. @mixin mat_modal(){
  1503. background-color: rgba(0,0,0,0.7);
  1504. @include rounded(5px); border: 0;
  1505. *{color:#fff; background-color:transparent;}
  1506. @include fs12;
  1507. form{
  1508. background-color:transparent; color:#fff; border: 0px;
  1509. .form-actions{
  1510. background-color:transparent; margin: 0; padding: 0; border: 0;
  1511. }
  1512. input.form-text, textarea, div.grippie{background-color:#fff; color:#000; border: 0;}
  1513. .form-actions{ text-align: right ;}
  1514. input.form-submit{
  1515. @include button($button-tny);
  1516. //@include btn-mini; color:#000; //change this btn bootstrap -> foundation
  1517. &[name="create"]{
  1518. @include button($button-tny, $success-color);
  1519. }
  1520. &[name="save"]{
  1521. @include button($button-tny, $success-color);
  1522. }
  1523. &[name="delete"]{
  1524. @include button($button-tny, $alert-color);
  1525. }
  1526. &[name="cancel"]{
  1527. @include button($button-tny, $secondary-color);
  1528. }
  1529. }
  1530. }
  1531. }
  1532. #modal{
  1533. @include mat_modal();
  1534. >*{padding: 10px;}
  1535. .form-item-flag-lists-name{
  1536. // label, input{.inlineblock();}
  1537. // label{width:38%;}
  1538. input{width:95%;}
  1539. }
  1540. .actions{
  1541. text-align: right;
  1542. }
  1543. }
  1544. /**
  1545. * the new modal api used for preview and register modal
  1546. */
  1547. .modal-wrapper {
  1548. &:before {
  1549. content: "";
  1550. display: inline-block;
  1551. height: 100%;
  1552. margin-right: -0.25em;
  1553. vertical-align: middle;
  1554. }
  1555. &:after, &:before {
  1556. -moz-box-sizing: border-box;
  1557. }
  1558. // background-color: rgba(0, 0, 0, 0.4);
  1559. bottom: 0;
  1560. // display: none;
  1561. left: 0;
  1562. position: fixed;
  1563. right: 0;
  1564. text-align: center;
  1565. top: 0;
  1566. white-space: nowrap;
  1567. z-index: 99998;
  1568. .modal-bg{
  1569. background-color: #000;
  1570. position:absolute;
  1571. top:0; left:0;
  1572. width:100%; height:100%;
  1573. opacity:0.5;
  1574. }
  1575. .modal-content{
  1576. position:relative;
  1577. display: inline-block;
  1578. margin: 0 auto;
  1579. text-align: left;
  1580. vertical-align: middle;
  1581. white-space: normal;
  1582. // width: 400px;
  1583. min-height:200px;
  1584. // background-color: #fff;
  1585. }
  1586. }
  1587. /*
  1588. _______ __________ ____ __ __ ____ ___ _ __
  1589. / / ___// ____/ __ \/ __ \/ / / / / __ \/ | / | / /
  1590. __ / /\__ \/ / / /_/ / / / / / / / / /_/ / /| | / |/ /
  1591. / /_/ /___/ / /___/ _, _/ /_/ / /___/ /___/ ____/ ___ |/ /| /
  1592. \____//____/\____/_/ |_|\____/_____/_____/_/ /_/ |_/_/ |_/
  1593. */
  1594. .jspContainer{
  1595. .jspVerticalBar{
  1596. background-color: transparent;
  1597. width:5px; //margin-right:-5px;
  1598. .jspTrack{
  1599. background-color: transparent;
  1600. .jspDrag{
  1601. background-color: #ccc;
  1602. @include rounded(3px);
  1603. }
  1604. }
  1605. }
  1606. }
  1607. /*
  1608. __________ ____ __ ______________
  1609. /_ __/ __ \/ __ \/ / /_ __/ _/ __ \
  1610. / / / / / / / / / / / / / // /_/ /
  1611. / / / /_/ / /_/ / /___/ / _/ // ____/
  1612. /_/ \____/\____/_____/_/ /___/_/
  1613. */
  1614. #tooltip{
  1615. position:absolute; z-index:999; max-width:180px; background-color: rgba(255, 255, 255, 1); padding: 5px; @include rounded(3px);
  1616. @include fs12; @include fs500;
  1617. @include drop-shadow(0, 0, 5px, 0.4);
  1618. &.op-visible{
  1619. @include transition-simply-prefix(opacity 0.1s ease-out); // top 0.1s linear); // left 0.1s linear,
  1620. // change this transition foundation
  1621. }
  1622. }
  1623. /*
  1624. ______________________ ____ ___ ________ __
  1625. / ____/ ____/ ____/ __ \/ __ )/ | / ____/ //_/
  1626. / /_ / __/ / __/ / / / / __ / /| |/ / / ,<
  1627. / __/ / /___/ /___/ /_/ / /_/ / ___ / /___/ /| |
  1628. /_/ /_____/_____/_____/_____/_/ |_\____/_/ |_|
  1629. */
  1630. #block-feedback-form{
  1631. @media #{$medium-only}{ bottom:5px; left:5px; right:auto; }
  1632. h2{
  1633. line-height:1.2; @include fs14; margin: 0;
  1634. .title{display:none;}
  1635. }
  1636. #feedback-form-toggle{
  1637. padding: 2px 3px; @include rounded(3px); background-color:#ff7600; color:#fff;
  1638. line-height:2; @include fs900;
  1639. }
  1640. .content{
  1641. @include mat_modal();
  1642. .ie8 &{background:#000;}
  1643. }
  1644. #feedback-status-message{background-color:#fff; padding: 5px;}
  1645. }
  1646. /*
  1647. _________ _____ __ __ __ _________ ____ _____
  1648. /_ __/ | / ___// //_/ _/_/ /_ __/ | / __ ) ___/
  1649. / / / /| | \__ \/ ,< _/_/ / / / /| | / __ \__ \
  1650. / / / ___ |___/ / /| | _/_/ / / / ___ |/ /_/ /__/ /
  1651. /_/ /_/ |_/____/_/ |_| /_/ /_/ /_/ |_/_____/____/
  1652. */
  1653. @mixin tabs-primary(){
  1654. a{
  1655. @include fs12;
  1656. padding: 5px 10px;
  1657. background-color:#e6e6e6;
  1658. &.active, &:hover{background-color:#e6e6e6;}
  1659. @include rounded(3px);
  1660. }
  1661. }
  1662. @mixin tabs-secondary(){
  1663. @include fs10;
  1664. padding: 0.5em 1em;
  1665. }
  1666. #tasks{
  1667. ul.tabs{
  1668. @include inlineblock();
  1669. border:0 solid #fff;
  1670. padding: 0; margin: 0;
  1671. li{padding: 0; margin: 2px 5px; border:0 solid #fff;}
  1672. a{
  1673. border:0; color:#7f7f7f;
  1674. &.active, &:hover{font-weight: 900; color:#000;}
  1675. }
  1676. &.primary{
  1677. @include tabs-primary();
  1678. }
  1679. &.secondary{
  1680. @include tabs-secondary();
  1681. }
  1682. }
  1683. }
  1684. /*
  1685. ______________ _____________________
  1686. / ___/_ __/ |/_ __/ _/ ____/ ___/
  1687. \__ \ / / / /| | / / / // / \__ \
  1688. ___/ // / / ___ |/ / _/ // /___ ___/ /
  1689. /____//_/ /_/ |_/_/ /___/\____//____/
  1690. */
  1691. /*
  1692. _ _ ___ ___ ___
  1693. | | |_ -| -_| _|
  1694. |___|___|___|_|
  1695. */
  1696. .page-user, .page-user-edit, .page-user-password, .page-user-reset, .page-toboggan{
  1697. #center{background: #fff url('../img/user-page-bg.gif') no-repeat bottom right;}
  1698. .messages{ width:800px; margin:0 auto; }
  1699. &.role-6 #tasks .tabs.primary{display:none;}
  1700. &.role-6 #tasks .tabs.secondary{@include tabs-primary();}
  1701. #center >*{
  1702. width:800px; margin:0 auto; padding-top:1em; @include fs14;
  1703. fieldset{
  1704. margin-bottom:1em;
  1705. border:none;
  1706. }
  1707. legend{
  1708. @include fs16; margin:0; padding:10px 0 5px 0; line-height:1; border:0 solid #fff;
  1709. a{color:#000;}
  1710. }
  1711. .form-item{
  1712. margin:0 0 0.5em 0; width:100%;
  1713. label, input.form-text{
  1714. @include inlineblock(); vertical-align:middle;
  1715. }
  1716. label{margin-right:1em;}
  1717. input.form-text{
  1718. padding:2px 4px; width:20em;
  1719. }
  1720. }
  1721. .form-wrapper{
  1722. &>.form-item{margin:0 0 2em 0;}
  1723. }
  1724. .form-type-password-confirm, .form-type-new-password-confirm{
  1725. label{width:9em;}
  1726. .password-parent{width:auto;}
  1727. .password-strength, .password-confirm{
  1728. width:15em; margin-top:0;
  1729. }
  1730. }
  1731. .form-type-checkbox{
  1732. input{margin:0;}
  1733. label{@include fs14; margin:0;}
  1734. }
  1735. #edit-language{
  1736. .form-item{
  1737. @include inlineblock(); width:auto; margin-right:1em;
  1738. input, label{margin:0;}
  1739. }
  1740. }
  1741. select.form-select{
  1742. width:auto; padding:2px 4px; height:auto;
  1743. }
  1744. div.description{
  1745. @include fs11;
  1746. }
  1747. div.form-actions{
  1748. margin: 0; text-align:right; padding: 1em 0.5em;
  1749. }
  1750. // input#edit-submit{@include btn; @include btn-success;} //change this btn foundation
  1751. &#user-profile-form{
  1752. label{min-width:10em; }
  1753. }
  1754. #edit-profile-adherent-field-first-name, #edit-profile-adherent-field-name,
  1755. #edit-profile-adherent-field-private-quality, #edit-profile-adherent-field-service, #edit-profile-adherent-field-employee,
  1756. #edit-profile-adherent-field-naf, #edit-profile-adherent-field-siret{
  1757. @include inlineblock(); vertical-align:middle; width:auto; margin: 0 1em 0.5em 0;
  1758. div{width:auto; margin: 0; padding: 0;}
  1759. // label{margin: 0 0.5em 0 0;}
  1760. }
  1761. // #edit-profile-adherent-field-name, #edit-profile-adherent-field-service,
  1762. // #edit-profile-adherent-field-naf, #edit-profile-adherent-field-siret, .form-item-profile-adherent-field-adresse-und-0-locality{
  1763. // label{min-width:auto;}
  1764. // }
  1765. #edit-profile-adherent-field-siret{label{width:auto;}input{width:8em;}}
  1766. #edit-profile-adherent-field-naf{input{width:13em;}}
  1767. #edit-profile-adherent-field-organization{ margin: 2em 0 0 0; }
  1768. #edit-profile-adherent-field-employee{
  1769. label{width:auto;}
  1770. input{width:4em;}
  1771. }
  1772. #edit-profile-adherent-field-private-phone{
  1773. .form-phone-number{
  1774. @include inlineblock(); vertical-align:middle;
  1775. #edit-profile-adherent-field-private-phone-und-0-number{width:10em;}
  1776. }
  1777. }
  1778. #edit-profile-adherent-field-adresse-und-0{
  1779. padding:0;
  1780. .street-block{
  1781. input{ width:35em;}
  1782. }
  1783. .locality-block{
  1784. .form-item{width:auto; margin-right:1em;}
  1785. }
  1786. }
  1787. #edit-profile-adherent-field-user-website{
  1788. margin: 2em 0 0 0;
  1789. .form-item>*{@include inlineblock(); vertical-align: middle; }
  1790. input{width:35em}
  1791. }
  1792. &.profile{
  1793. h3{border:0 solid transparent;}
  1794. .field-label{display:inline;}
  1795. }
  1796. #edit-mimemail, #edit-locale, #edit-timezone{padding:0;}
  1797. }
  1798. } // user
  1799. /*
  1800. _____ _____ _____ _____ __ _____ _____ _____ _ _ _ _____
  1801. | __| | | _ | | | __| | | __| | | | __|
  1802. |__ |- -| | | | __| |__| __| | | | __| | | |__ |
  1803. |_____|_____|_|_|_|__| |_____|_____|_|___|_____|_____|_____|
  1804. */
  1805. body.node-type-simplenews{
  1806. #content{
  1807. .inner-content{
  1808. text-align:center;
  1809. }
  1810. article.node.node-simplenews{
  1811. @include inlineblock();
  1812. max-width:600px;
  1813. padding:1em 0;
  1814. tbody{
  1815. border-top:0px;
  1816. }
  1817. }
  1818. }
  1819. }
  1820. /*
  1821. _____ _____ _____ _____ _____ _____ _____ _____ _____ _____ _____
  1822. | _ | _ | __| __| | | | | |_ _| _ | |_ _|
  1823. | __| | | | __| | --| | | | | | | | | | --| | |
  1824. |__| |__|__|_____|_____| |_____|_____|_|___| |_| |__|__|_____| |_|
  1825. */
  1826. .page-node-11175{
  1827. #main{
  1828. // background-color:#fff;
  1829. #center{
  1830. background: #fff url('../img/bg-contact.gif') no-repeat bottom right;
  1831. }
  1832. .field-name-body p{
  1833. @include inlineblock; margin: 15px;
  1834. strong{@include fs18;}
  1835. }
  1836. }
  1837. } // contact
  1838. /*
  1839. _____ _____ _____ _____ _____ _____ _____
  1840. | _ | __ | | | | | | __|
  1841. | __| -|- -| --|- -| | | | | |
  1842. |__| |__|__|_____|_____|_____|_|___|_____|
  1843. */
  1844. body.page-node-11187{
  1845. // #center{ background-color: #fff; }
  1846. @media #{$medium-up}{
  1847. .node-11187{
  1848. .field-name-body{
  1849. div.column, div.column-demi, div.column-full, div.column-auto{
  1850. &, &:last-child{
  1851. @include inlineblock; margin: 10px; float:none;
  1852. }
  1853. }
  1854. div.column{
  1855. width:22.4%;
  1856. ul.list-text, p.description{ min-height:170px;}
  1857. }
  1858. div.column-demi{
  1859. width:46%;
  1860. ul.list-text{ min-height:110px;}
  1861. }
  1862. div.column-full{
  1863. width:92%;
  1864. // ul.list-text{ min-height:110px;}
  1865. }
  1866. div.column-auto{
  1867. width:auto; max-width: 98%;
  1868. }
  1869. }
  1870. }
  1871. #block-materio-user-user-register{
  1872. width:600px; margin: 0 auto; padding:2em;
  1873. }
  1874. }
  1875. @media #{$small-only}{
  1876. // #block-materio-user-user-register{ padding: 25px 0 0 0; #user-login, >h3:first-child, h3 >span{display:block;}}
  1877. #block-system-help{text-align: center;}
  1878. }
  1879. .node-11187{
  1880. .field-name-body{
  1881. text-align:center;
  1882. >*{text-align:left;}
  1883. div.column, div.column-demi, div.column-full, div.column-auto{
  1884. position:relative; background-color: #fff;
  1885. @include rounded(5px); @include drop-shadow(0, 0, 6px, 0.5);
  1886. .ie8 &{max-width:500px; margin:auto; margin-bottom:15px; border:1px solid #C6C6C6;}
  1887. overflow:hidden;
  1888. &>*{ padding: 0 10px;}
  1889. // img{float:left; padding: 0; }
  1890. h2{ text-align: left; margin: 5px 0 0 15px;}
  1891. .subtitle{
  1892. padding: 0 0 0 15px;
  1893. @include fs18; @include italic; @include bold; line-height:1;
  1894. }
  1895. ul{margin: 0; padding: 0 15px;}
  1896. li{
  1897. list-style: none; @include fs12;
  1898. &:before{
  1899. content:"+ ";
  1900. @include fs900;
  1901. }
  1902. }
  1903. .description{
  1904. @include fs12;
  1905. margin: 0; padding: 0 15px;
  1906. }
  1907. .get-link{
  1908. margin: 0; @include border-radius(0 0 5px 5px); border: 1px solid #fff; min-height: 92px;
  1909. a{ display:block; width:100%; padding: 15px 0; color:#1A1A1A; text-decoration: none; }
  1910. }
  1911. .get-link{background-color: #C8C8C8; }
  1912. &.web{ .get-link{ background-color: #69CDCF; } }
  1913. &.webshowroom { .get-link{ background-color: #D476AE; } }
  1914. &.pack4 { .get-link{ background-color: #E6DE1C; } }
  1915. &.etudiants{ .get-link{background-color: #4BA13D; } };
  1916. // &.ecole-de-neige { .list-neige{min-height:80px;} }
  1917. &.neutral .get-link{
  1918. min-height: 62px;
  1919. padding:15px 0;
  1920. }
  1921. } // end div.column div.column-demi
  1922. div.column{
  1923. h2{ padding:10px 0 0; @include fs24; }
  1924. // .subtitle{ min-height:3em; }
  1925. .get-link{
  1926. padding: 0;
  1927. @include fs28; text-align: center;
  1928. @include italic; @include fs900;
  1929. span{ @include fs20; }
  1930. @include shadowTextBtnWhite();
  1931. }
  1932. }
  1933. div.column-demi{
  1934. h2{ padding:10px 0 0; @include fs24; top:0; }
  1935. .subtitle{ min-height:2em; }
  1936. ul{ @include fs14; min-height:120px;}
  1937. .get-link{ @include fs14; text-align: left; padding: 0 1em; background-color:#ddd; }
  1938. }
  1939. }
  1940. } // end .node-11187
  1941. // hide get free account for user already logged-in
  1942. // hide get flocon for user already flocon (role-6)
  1943. &.logged-in{
  1944. // .column.gratos{.get-link{
  1945. // cursor:auto!important;
  1946. // a{display:none!important;}
  1947. // }}
  1948. // &.role-6{
  1949. // .column.etudiants{.get-link{
  1950. // cursor:auto!important;
  1951. // a{display:none!important;}
  1952. // }}
  1953. // }
  1954. }
  1955. } // princing
  1956. /*
  1957. _____ ____ _____ _____ _____ _____ _____ _____ _____ _____ _____ _____
  1958. | _ | \| | | __| __| | | | | | __| | __ | |
  1959. | | | | | __|__ |- -| | | | | | | __| | | -| | | |
  1960. |__|__|____/|__|__|_____|_____|_____|_____|_|___| |__| |_____|__|__|_|_|_|
  1961. */
  1962. .node-11186{
  1963. nav ul.links a.language-link { display:none; }
  1964. }
  1965. #webform-client-form-11186{
  1966. @media #{$medium-up}{
  1967. padding: 10px 30px;
  1968. #webform-component-column-left--membership-options{
  1969. margin: 10px 0;
  1970. label{width:auto;}
  1971. }
  1972. fieldset{
  1973. @include rounded(5px); border-left: 1px solid #cccccc; border-bottom: 1px solid #cccccc; padding: 10px; border-top-width: 0; border-right-width: 0; border-bottom-width: 0;
  1974. fieldset{ border: 0 solid #ddd; padding: 0;}
  1975. }
  1976. legend{margin: 0; @include fs18; @include fs700;}
  1977. .form-item{ margin: 0 20px 0 0; }
  1978. label{ @include fs12; width:10em; @include inlineblock; vertical-align:middle; margin-right:1em; border-bottom: 1px solid #cccccc; }
  1979. .description{ @include fs11; width:25em; @include inlineblock; vertical-align:bottom; margin-left:1em; color:#7f7f7f;}
  1980. input.form-text{width:13em;}
  1981. }
  1982. @media #{$medium-only}{
  1983. padding: 10px;
  1984. #webform-component-column-left--membership-options{
  1985. margin: 0 0 10px 0;
  1986. .form-item{width:100%;}
  1987. label{ width:75%; }
  1988. }
  1989. legend{margin: 0; @include fs16; @include fs700;}
  1990. .form-item{ margin: 0; float:none;}
  1991. label{ @include fs12; width:30%; @include inlineblock; vertical-align:middle; margin-right:0.5em; }
  1992. input.form-text, select.form-select{width:60%;}
  1993. #webform-component-infos{@include fs14;}
  1994. } //change this
  1995. background-color: #e6e6e6; @include rounded(10px);
  1996. .fieldset-wrapper>.form-item{ @include inlineblock; }
  1997. #webform-component-column-left{@include inlineblock; width:25%; border:none;}
  1998. #webform-component-column-right{ @include inlineblock; min-width:70%;}
  1999. #webform-component-column-left--membership-options{
  2000. .form-type-radio{
  2001. border:1px solid #ddd; @include rounded(5px); padding: 10px 5px; margin: 5px 0;
  2002. input{ @include inlineblock; vertical-align: middle; margin:0px 5px;}
  2003. label{@include fs20; @include fs700; @include inlineblock; vertical-align: middle; margin: 0;}
  2004. background-color: #fff;
  2005. &:hover{@include drop-shadow(0, 0, 5px, 0.2); }
  2006. &.form-item-submitted-column-left-membership-options:nth-child(1){background-color: #69CDCF;}
  2007. &.form-item-submitted-column-left-membership-options:nth-child(2){background-color: #D476AE;}
  2008. &.form-item-submitted-column-left-membership-options:nth-child(3){background-color: #E6DE1C;}
  2009. &.form-item-submitted-column-left-membership-options:not(.selected){opacity:0.4;}
  2010. }
  2011. &>label{width:200px; @include fs18; @include fs700; }
  2012. label{ border: 0; }
  2013. }
  2014. #webform-component-column-right--me--my-account-email{
  2015. display:block;
  2016. }
  2017. #webform-component-column-right--company--administrative-e-mail{
  2018. .description{@include inlineblock;}
  2019. }
  2020. #addressfield-wrapper{ margin-top:1em; }
  2021. .street-block .form-item{ @include inlineblock; }
  2022. #webform-component-column-right--collaborators{
  2023. margin: 20px 0; overflow:hidden;
  2024. fieldset{@include inlineblock; width:33%;}
  2025. .form-item{display:block;}
  2026. label{width:6em;}
  2027. input{width:11em;}
  2028. }
  2029. #webform-component-infos{margin: 20px 0;}
  2030. .form-actions{
  2031. padding: 0; margin: 0;
  2032. border: 0px;
  2033. background-color: transparent;
  2034. text-align: left;
  2035. .form-submit{
  2036. border: 2px solid #69CDCF; background-color:#69CDCF; color:#fff;
  2037. @include fs18; padding: 0.2em 1em 0.3em; @include rounded(0.3em);
  2038. font-weight:bold;
  2039. margin-bottom:9px;
  2040. @include shadowTextBtnBlack();
  2041. }
  2042. }
  2043. #webform-component-column-right--news-letters{
  2044. >label{margin: 0; @include fs18; @include fs700; border:none; line-height:40px}
  2045. .form-item{
  2046. @include inlineblock();
  2047. label{width:auto}
  2048. input, label{margin: 0;}
  2049. }
  2050. }
  2051. #edit-submitted-terms-of-services{
  2052. margin-bottom:0.5em;
  2053. input, label{margin: 0 0.3em 0 0;}
  2054. label{ width:auto; }
  2055. }
  2056. } // adhesion
  2057. /*
  2058. _____ _____ _____ _____ _____ _____ _____ _____ _____ _ _ _ _____ _____ _____ _____
  2059. | | | | | | _ | __ |_ _| | | | | __| | | | | __| | __ | |
  2060. | | | --| | --| | -| | | | | |- -| __| | | | | __| | | -| | | |
  2061. |_____|_____| |_____|__|__|__|__| |_| \___/|_____|_____|_____| |__| |_____|__|__|_|_|_|
  2062. */
  2063. #uc-cart-view-form{
  2064. background-color: #e6e6e6;
  2065. // @include rounded(10px);
  2066. padding: 10px, 30px;
  2067. // max-width:$cardfull_w;
  2068. display:inline-block;
  2069. table{
  2070. width:auto; display:table;
  2071. background-color:#fff;
  2072. thead th{border-bottom:none;padding: 1em;}
  2073. tbody{
  2074. border-top:none;
  2075. tr.even, tr.odd{
  2076. background-color:#fff;
  2077. border-bottom:none;
  2078. }
  2079. td{
  2080. padding: 1em;
  2081. // &.price{ padding: 0.5em 1em; }
  2082. }
  2083. }
  2084. }
  2085. fieldset{ border: none!important;}
  2086. .form-type-uc-quantity input{
  2087. width:2em;
  2088. }
  2089. .form-actions{
  2090. padding: 0; margin: 0;
  2091. border: 0px;
  2092. background-color: transparent;
  2093. text-align: right;
  2094. display:block; width:100%;
  2095. &:before, &:after{
  2096. display:block;
  2097. }
  2098. .form-submit{
  2099. @include bouton();
  2100. margin-left:1em;
  2101. &#edit-checkout--2{
  2102. @include bouton-bleu();
  2103. }
  2104. }
  2105. }
  2106. }
  2107. /*
  2108. _____ _____ _____ _____ _____ _____ _____ _____ _____ _____ _____ _____ _____ _____
  2109. | | | | | | | | __| | | | | | |_ _| | __| | __ | |
  2110. | | | --| | --| | __| --| -| | | | | | | | __| | | -| | | |
  2111. |_____|_____| |_____|__|__|_____|_____|__|__|_____|_____| |_| |__| |_____|__|__|_|_|_|
  2112. */
  2113. #uc-cart-checkout-form{
  2114. // display:inline-block;
  2115. @mixin price-table(){
  2116. @include fs14;
  2117. min-width:20em;
  2118. td.price{width:4em;};
  2119. }
  2120. background-color: #e6e6e6;
  2121. // @include rounded(10px);
  2122. padding: 10px, 30px;
  2123. fieldset{ border: none!important;}
  2124. fieldset.form-row{
  2125. // @include rounded(5px); border-left: 1px solid #cccccc; border-bottom: 1px solid #cccccc;
  2126. padding-bottom:20px; margin-bottom:20px;
  2127. // fieldset{ border: 0 solid #ddd; padding: 0;}
  2128. }
  2129. fieldset.form-column{
  2130. @include inlineblock; max-width:39%; clear:both; float:none;
  2131. margin: 15px 1em;
  2132. > .fieldset-wrapper > .form-wrapper{
  2133. margin: 10px 0;
  2134. }
  2135. }
  2136. fieldset.form-column-left{}
  2137. fieldset.form-column-right{
  2138. border-left:1px solid #ccc;
  2139. margin-left:2em; padding-left:2em;
  2140. // background-color:#fff; @include rounded(5px);
  2141. }
  2142. legend{margin: 0; @include fs18; @include fs700; border:none; line-height:2;}
  2143. .fieldset-description{@include fs12;}
  2144. .fieldset-wrapper{@include fs12;}
  2145. .form-item{ margin: 0 20px 0 0; }
  2146. .description{ @include fs11; width:25em; @include inlineblock; vertical-align:bottom; margin-left:1em; color:#7f7f7f;}
  2147. #cart-pane{
  2148. >.fieldset-wrapper{
  2149. @include inlineblock();
  2150. @include rounded(5px);
  2151. padding: 10px;
  2152. background-color:#fff;
  2153. }
  2154. table{
  2155. @include price-table();
  2156. }
  2157. tbody{border:none; }
  2158. tr{background-color: transparent; border:none; }
  2159. td{
  2160. padding: 0 5px;
  2161. vertical-align: bottom;
  2162. &.products{
  2163. a{color:inherit; @include fs700;}
  2164. width:auto;
  2165. ul.product-description{margin: 0; @include fs12;}
  2166. li{list-style: none;}
  2167. }
  2168. }
  2169. tr.subtotal{
  2170. td{@include fs16; @include fs700;}
  2171. }
  2172. }
  2173. #customer-pane{width:35em;}
  2174. #billing-pane{
  2175. label{ @include fs12; width:8em; @include inlineblock; vertical-align:middle; margin-right:1em; border-bottom: 1px solid #cccccc; }
  2176. input.form-text{width:13em;}
  2177. }
  2178. #coupon_automatic-pane{}
  2179. #coupon-pane{}
  2180. #payment-pane{
  2181. // float:right;
  2182. .fieldset-wrapper{
  2183. background-color:#fff;
  2184. @include rounded(5px);
  2185. padding: 10px;
  2186. }
  2187. #line-items-div{
  2188. float:none; border:none;
  2189. @include inlineblock(); margin: 10px 0 20px;
  2190. table{@include price-table();}
  2191. tbody{border:none;}
  2192. td{
  2193. padding: 0 5px;
  2194. }
  2195. tr{
  2196. td{@include fs500;}
  2197. &.line-item-total td{
  2198. @include fs16; @include fs700; text-align: right;
  2199. }
  2200. }
  2201. }
  2202. #edit-panes-payment-payment-method{
  2203. label{width:auto; border-bottom:none;}
  2204. .form-item-panes-payment-payment-method{
  2205. border:1px solid #ddd;
  2206. border-radius:5px;
  2207. margin: 0.5em; padding: 0.5em;
  2208. label{font-weight:bold;}
  2209. }
  2210. }
  2211. #payment-details{
  2212. width:25em;
  2213. border-top:none; padding: 0; margin: 0;
  2214. }
  2215. }
  2216. #edit-actions{
  2217. width:100%;
  2218. padding:1em 0; margin: 0;
  2219. border: 0px;
  2220. background-color: transparent;
  2221. text-align: center;
  2222. .form-submit{
  2223. @include bouton();
  2224. margin-left:1em;
  2225. &#edit-continue{
  2226. @include bouton-bleu();
  2227. }
  2228. }
  2229. }
  2230. }
  2231. /*
  2232. _____ _____ _____ _____ _____ _____
  2233. | | | | | | _ | __ |_ _|
  2234. | | | --| | --| | -| | |
  2235. |_____|_____| |_____|__|__|__|__| |_|
  2236. &&
  2237. _____ _____ _____ _____ _____ _____ _____ _____ _____ _____ _____ _____ __ _____ ____ _____ _____ _____ _____ _____
  2238. | | | | | | | | __| | | | | | |_ _| | | | _ | | | | \| _ |_ _| | | | |
  2239. | | | --| | --| | __| --| -| | | | | | | | | | | |__|- -| | | | | | |- -| | | | | |
  2240. |_____|_____| |_____|__|__|_____|_____|__|__|_____|_____| |_| \___/|__|__|_____|_____|____/|__|__| |_| |_____|_____|_|___|
  2241. */
  2242. //.page-cart,
  2243. .page-cart-checkout-review{
  2244. #content{
  2245. //text-align:center;
  2246. &> .inner-content{
  2247. //.card-box($cardfull_w, $cardfull_h);
  2248. //text-align:left;
  2249. display:inline-block;
  2250. padding: 1em;
  2251. }
  2252. }
  2253. #edit-actions{
  2254. margin: 0; padding: 0;
  2255. &:before, &:after{display:block;}
  2256. }
  2257. #review-instructions{
  2258. width:30em;
  2259. padding: 1em 0;
  2260. // .info;
  2261. }
  2262. table.order-review-table{
  2263. border:none;
  2264. .pane-title-row{
  2265. border:none;
  2266. background-color:transparent;
  2267. text-align:left;
  2268. @include fs18;
  2269. td{ padding: 1em 0 0 0; }
  2270. }
  2271. table.cart-review{
  2272. tr.odd{
  2273. background-color:transparent;
  2274. border:none;
  2275. }
  2276. }
  2277. td.title-col{
  2278. padding: 0;
  2279. text-align:left;
  2280. }
  2281. td.data-col{
  2282. padding: 0;
  2283. width:75%;
  2284. }
  2285. .review-button-row{
  2286. border:none;
  2287. background-color:transparent;
  2288. &>td{
  2289. padding: 3em 0 0 0;
  2290. }
  2291. form{
  2292. margin: 0 0.5em 0 0; @include inlineblock();
  2293. }
  2294. }
  2295. }
  2296. #edit-actions{
  2297. border: 0px;
  2298. background-color: transparent;
  2299. text-align: right;
  2300. }
  2301. input.form-submit{
  2302. @include bouton();
  2303. margin-left:1em;
  2304. &#edit-submit{
  2305. @include bouton-bleu();
  2306. }
  2307. }
  2308. }
  2309. /*
  2310. ____ _____ ____ _____ _____ _____ _____ _____ _____ _____
  2311. | \| | \| _ | |_ _| | | | | __|
  2312. | | |- -| | | | --| | | |- -| | | | | __|
  2313. |____/|_____|____/|__|__|_____| |_| |_____|__ _|_____|_____|
  2314. |__|
  2315. */
  2316. #didactique-page{
  2317. .node-didactique{
  2318. @include rounded(5px); background-color: #FFF;
  2319. @include drop-shadow(0, 0, 5px, 0.2);
  2320. max-width:850px;
  2321. @include fs14; background-color:#fff; //padding: 5px;
  2322. margin: 1em auto; padding: 1em;
  2323. .field-name-field-emvideo{
  2324. margin: 1em 0;
  2325. }
  2326. .field-name-title-field{
  2327. @include fs24; @include fs900; @include italic; padding:5px 0;
  2328. }
  2329. .field-name-field-visuel{
  2330. figure, img{max-width:100%;}
  2331. }
  2332. }
  2333. @media #{$medium-up}{
  2334. .side{ @include inlineblock(); vertical-align: top; }
  2335. .group-sideleft{ width:60%; }
  2336. .group-sideright{ width:39%; }
  2337. }
  2338. // @media #{$small-up}{
  2339. // } // change this
  2340. }
  2341. /*
  2342. _ _ _ _____ _____ _ _ _ _____ _____ _____ _____
  2343. | | | | | | | | | | | __| | _ | __ | __|
  2344. | | | | | | | | | | | __| | | -| __|
  2345. |_____|__|__|_____| |_____|_____| |__|__|__|__|_____|
  2346. */
  2347. .page-whoweare{
  2348. #tool-bar{
  2349. @media #{$small-only}{
  2350. #block-materio-page-title-materio-page-title{display:none;}
  2351. } // chanhe this
  2352. }
  2353. }
  2354. /*
  2355. _ _
  2356. _____ ___|_|___| |_ ___ ___ ___ ___ ___ ___
  2357. | | .'| | | _| -_| | .'| | _| -_|
  2358. |_|_|_|__,|_|_|_|_| |___|_|_|__,|_|_|___|___|
  2359. */
  2360. .maintenance-page{
  2361. #container, #header{ text-align: center; padding: 0; position:relative;}
  2362. #main{background-color: transparent; }
  2363. #header h1.site-name{font-size:36px; margin: 0; padding-left:0;}
  2364. h2.site-slogan{font-size:16px; @include fs300; margin: 0; line-height:1.1;}
  2365. }
  2366. /*
  2367. _____ _____ _____
  2368. | __| _ | |
  2369. | __| | | |
  2370. |__| |__|__|__ _|
  2371. |__|
  2372. */
  2373. .page-faq-page #main{
  2374. background: #fff url('../img/bg-faq.png') no-repeat bottom right;
  2375. }
  2376. #content .faq-content{
  2377. .faq-description{
  2378. @include fs12; padding-bottom:2em;
  2379. }
  2380. ul.faq-ul-questions-top{
  2381. margin: 0;
  2382. li{
  2383. list-style: none;
  2384. a{
  2385. @include fs18; @include fs500;
  2386. }
  2387. }
  2388. }
  2389. h3.faq-header{
  2390. @include fs20; @include fs700; line-height:1.2;
  2391. margin: 0;
  2392. a{color:#000;}
  2393. }
  2394. .faq-dl-hide-answer{
  2395. padding: 0;
  2396. }
  2397. .faq-category-group{
  2398. padding-bottom:1em;
  2399. }
  2400. .faq-question-answer{
  2401. padding: 0.3em 0 0 0.8em;
  2402. .faq-question{
  2403. @include fs16; padding: 0; @include fs500;
  2404. a{color:#000;}
  2405. }
  2406. .faq-answer{
  2407. padding: 0; margin-bottom:2em;
  2408. @include fs12;
  2409. }
  2410. }
  2411. .field-name-body img{
  2412. max-width:50%;
  2413. height:auto;
  2414. }
  2415. }
  2416. /*
  2417. __ __ _ _____
  2418. / / / /___ ____ ___ ___ | | / /__ \
  2419. / /_/ / __ \/ __ `__ \/ _ \ | | / /__/ /
  2420. / __ / /_/ / / / / / / __/ | |/ // __/
  2421. /_/ /_/\____/_/ /_/ /_/\___/ |___//____/
  2422. */
  2423. body.home-v2{
  2424. #center{
  2425. background-color: transparent;
  2426. padding:0;
  2427. }
  2428. }
  2429. @mixin shaddowed(){
  2430. @include drop-shadow(0, 0, 5px, 0.2);
  2431. @include transition-simply-prefix(box-shadow 0.3s ease-out); // opacity 0.3s ease-out); //change this commas
  2432. &:hover{@include drop-shadow(0, 0, 5px, 0.4);}
  2433. }
  2434. #home-v2{
  2435. // padding: 40px 40px;
  2436. h2{font-size: 2.1em; font-weight: 300;}
  2437. a{color: #000};
  2438. .field-name-field-liens{
  2439. margin-top:1em;
  2440. .field-item{@include inlineblock(); margin:0 0.5em 0.5em 0; }
  2441. a{
  2442. font-weight: 700; @include inlineblock();
  2443. padding:0.5em 1em 0.7em;
  2444. @include rounded(5px);
  2445. background-color: rgba(255,255,255, 0.8);
  2446. body.logged-in &.visitor{display:none;}
  2447. body.not-logged-in &.member{display:none;}
  2448. }
  2449. }
  2450. .panel-separator{clear:both;}
  2451. >.panel-panel>div>.panel-pane {
  2452. // padding: 10px 15px;
  2453. overflow:hidden;
  2454. &.pane-node{
  2455. @include rounded(5px);
  2456. overflow:hidden;
  2457. .pane-content, .node{
  2458. position:relative; width:100%; height:100%; overflow:hidden;
  2459. }
  2460. .links a{
  2461. background-color: rgba(255,255,255, 0.7);
  2462. @include rounded(5px);
  2463. padding: 15px;
  2464. }
  2465. }
  2466. &.intro-video{
  2467. height:auto;
  2468. background-color: $creme;
  2469. margin-top:2em;margin-bottom:2em; padding-top:0;
  2470. .field-name-field-emvideo{
  2471. .embedded-video{
  2472. margin:0 auto;
  2473. @media #{$small-only}{
  2474. width:320px; height:180px;
  2475. }
  2476. @media #{$medium-only}{
  2477. width:640px; height:360px;
  2478. }
  2479. @media #{$large-only}{
  2480. width:800px; height:450px;
  2481. }
  2482. @media #{$xlarge-up}{
  2483. width:1024px; height:576px;
  2484. }
  2485. .player, iframe{
  2486. width:100%; height:100%;
  2487. }
  2488. }
  2489. }
  2490. .field-name-title-field{
  2491. display:none;
  2492. }
  2493. .field-name-body{
  2494. // display:none;
  2495. margin-top:1em;
  2496. text-align: center;
  2497. p{
  2498. // @include grid-column(6);
  2499. text-align: left;
  2500. @include inlineblock();
  2501. width:35%; margin-left:2%;
  2502. font-size:0.756em;
  2503. @media #{$small-only}{
  2504. width:48%;
  2505. }
  2506. }
  2507. }
  2508. @media #{$small-only}{
  2509. margin-top: 0.5em;
  2510. }
  2511. }
  2512. &.pane-menu-menu-home-v2{
  2513. margin:2em 0;
  2514. ul.menu{
  2515. margin: 0px; text-align: center;
  2516. }
  2517. li{
  2518. margin:0 1em 0 0; padding:0px; list-style: none; height:2.5em;
  2519. @include inlineblock();
  2520. a{
  2521. background-color: #4d4d4d;
  2522. @include rounded(5px);
  2523. padding: 5px 12px 7px;
  2524. color: $creme;
  2525. font-size: 18px;
  2526. font-weight: 500;
  2527. transition:opacity,background-color 0.2s ease-out;
  2528. }
  2529. &:nth-child(1){
  2530. // a{color:$orange;}
  2531. &:hover a{background-color: $orange; color:#4d4d4d;}
  2532. }
  2533. &:nth-child(2){
  2534. // a{color:$vertclair;}
  2535. &:hover a{background-color: $vertclair; color:#4d4d4d;}
  2536. }
  2537. &:nth-child(3){
  2538. // a{color:$bleuclair;}
  2539. &:hover a{background-color: $bleuclair; color:#4d4d4d;}
  2540. }
  2541. &:nth-child(4){
  2542. // a{color:$jaune;}
  2543. &:hover a{background-color: $jaune; color:#4d4d4d;}
  2544. }
  2545. &:nth-child(5){
  2546. // a{color:$rose;}
  2547. &:hover a{background-color: $rose; color:#4d4d4d;}
  2548. }
  2549. &:nth-child(6){
  2550. // a{color:$violet;}
  2551. &:hover a{background-color: $violet; color:#4d4d4d;}
  2552. }
  2553. &:nth-child(7){
  2554. // a{color:$rouge;}
  2555. &:hover a{background-color: $rouge; color:#4d4d4d;}
  2556. }
  2557. }
  2558. @media #{$small-only}{
  2559. display:none;
  2560. }
  2561. }
  2562. &.pane-materio-user-user-register{
  2563. padding: 2em 0;
  2564. background: transparent url('../img/register-block.png') no-repeat 100% 90%;
  2565. text-align: center;
  2566. .pane-content{
  2567. @include inlineblock(); text-align: left;
  2568. }
  2569. h2, h3{@include fs900; @include italic; padding:5px 0; margin: 0; line-height: 1; @include inlineblock(); vertical-align: middle;}
  2570. h2{@include fs24;} h3{@include fs16;}
  2571. form{margin: 0 1em; padding:0px; @include inlineblock(); vertical-align: middle;}
  2572. .form-item, .form-wrapper{
  2573. margin: 0; position:relative; @include inlineblock();vertical-align: middle;
  2574. }
  2575. #edit-account{margin-right:5px;}
  2576. input.form-text{ @include fs12; @include rounded(5px); margin-bottom:4px;.ie8 &{margin-right:5px;}}
  2577. .form-item-mail input.form-text, .form-item-name input.form-text{ width:11em;}
  2578. .form-item-pass input.form-text{ width:7em;}
  2579. #edit-mail-check{
  2580. position:absolute; bottom:100%; z-index:9999; background-image: none;
  2581. height:auto; //width:90%;
  2582. padding: 5px; @include rounded(5px); margin-bottom:10px;
  2583. @include fs11; background-color: #fff;
  2584. @include drop-shadow(0, 0, 5px, 0.6);
  2585. @include transition-simply-prefix(bottom 0.1s ease-out);
  2586. &.error{
  2587. background-color: #f3968d;
  2588. // border: 2px solid #f30002;
  2589. color:#fff;
  2590. }
  2591. &.ok{ display:none; }
  2592. }
  2593. .form-submit{
  2594. //border: 2px solid #69CDCF; background-color:#69CDCF; color:#FF7400; // orange/bleu
  2595. @include fs16; padding: 0.1em 0.6em 0.2em; @include rounded(0.3em);
  2596. font-weight:bold;
  2597. margin-bottom:4px;
  2598. }
  2599. .form-item-termsofservices, #edit-field-newsletter{
  2600. margin-bottom:0; display:block; line-height: 1;
  2601. &>*{ @include inlineblock; vertical-align: middle; margin: 0; }
  2602. label{ @include fs10; background-color: #fff; @include rounded(3px); }
  2603. }
  2604. #user-register-form{
  2605. .form-submit{
  2606. border: 2px solid #69CDCF; background-color:#69CDCF; color:#fff; // blanc/bleu
  2607. @include shadowTextBtnBlack();
  2608. &[disabled]{
  2609. background-color:#ddd; border: 2px solid #ddd;
  2610. }
  2611. }
  2612. }
  2613. #user-login{
  2614. .form-submit{
  2615. border: 2px solid #E6DE1C; background-color:#E6DE1C; color:#fff; // noire/jaune
  2616. @include shadowTextBtnBlack();
  2617. }
  2618. }
  2619. #edit-simplenews{display:none;}
  2620. a.join{
  2621. @include inlineblock(); vertical-align: middle;
  2622. // display:block;
  2623. margin: 0 1em;
  2624. // width:5em;
  2625. @include fs16; padding: 0.1em 0.3em 0.2em; @include rounded(0.3em);
  2626. font-weight:bold;
  2627. border: 2px solid #69CDCF; background-color:#69CDCF; color:#fff; // blanc/bleu
  2628. @include shadowTextBtnBlack();
  2629. text-align: center; text-decoration: none;
  2630. }
  2631. @media #{$small-only}{
  2632. background-position: 160% 50%;
  2633. .form-item-mail input.form-text, .form-item-name input.form-text{ width:7em;}
  2634. min-height:60px; padding: 15px 0;
  2635. // #user-login, >h3:first-child, >h3 span{ display:none; }
  2636. }
  2637. .message-error{
  2638. color:#b94a48; @include fs12;
  2639. }
  2640. }
  2641. &.showroom{
  2642. @include shaddowed();
  2643. height:450px;
  2644. margin-top: 15px;
  2645. background-color: #fff;
  2646. // background: url("http://carnet-aux-petites-choses.fr/wp-content/uploads/2015/02/un-oeil-sur-la-matiere-materiO-26_gagaone.jpg");
  2647. // background-size: cover;
  2648. position: relative;
  2649. .pane-content{
  2650. width:100%; height:100%; position:relative;
  2651. .node{position:absolute;height:100%;width:100%;}
  2652. .field-name-field-bandeau{
  2653. position:absolute; width:100%; height:100%; overflow:hidden;
  2654. img{width:100%; margin-top:-10%;}
  2655. }
  2656. .group-content-wrapper{
  2657. position:relative;
  2658. z-index:2;
  2659. width:30%;
  2660. margin:3em 2em;
  2661. .group-content{
  2662. background-color: rgba(255,255,255, 0.8);
  2663. padding:1em;
  2664. @include rounded(5px);
  2665. .field-name-title-field{
  2666. font-size: 2.1em; font-weight: 300;
  2667. }
  2668. .field-name-body{
  2669. margin-top: 0.5em;
  2670. }
  2671. }
  2672. }
  2673. }
  2674. &:after{
  2675. content:url("../img/bulle.png");
  2676. transform: scale(0.8);
  2677. position: absolute;
  2678. bottom:-120px;
  2679. right: -20px;
  2680. z-index:10;
  2681. }
  2682. @media #{$small-only}{
  2683. height:210px;
  2684. margin-top: 10px;
  2685. .pane-content{
  2686. .field-name-field-bandeau{
  2687. position:absolute; width:200%; height:100%; overflow:hidden;
  2688. img{margin-top:-100px; margin-left:-200px;}
  2689. }
  2690. .group-content-wrapper{
  2691. width:auto;
  2692. padding:2%;
  2693. margin:2%;
  2694. .field-name-body{
  2695. font-size:0.756em;
  2696. margin-top:0.5em;
  2697. }
  2698. }
  2699. }
  2700. &:after{
  2701. opacity:0.4;
  2702. }
  2703. }
  2704. }
  2705. &.bdd{
  2706. @include shaddowed();
  2707. height:450px;
  2708. margin-top: 30px;
  2709. background-color: #FFF;
  2710. position: relative;
  2711. .links a{background-color: #e6e6e6;}
  2712. .field-name-field-bandeau{
  2713. @include inlineblock(); width:60%; height:100%; overflow:hidden;
  2714. img{max-width:2000px;}
  2715. }
  2716. .group-content-wrapper{
  2717. @include inlineblock(); width:35%;
  2718. // background-color: rgba(255,255,255, 0.7);
  2719. padding:1em;
  2720. @include rounded(5px);
  2721. .field-name-title-field{
  2722. font-size: 2.1em; font-weight: 300;
  2723. }
  2724. .field-name-body{
  2725. margin-top: 1em;
  2726. }
  2727. .field-name-field-liens a{background-color: rgba(230,230,230, 0.8);}
  2728. }
  2729. &:after{
  2730. content:url("../img/boule.png");
  2731. transform: scale(0.8);
  2732. position: absolute;
  2733. bottom:-50px;
  2734. left: -50px;
  2735. }
  2736. @media #{$small-only}{
  2737. height:auto;
  2738. .field-name-field-bandeau{
  2739. width:100%; display:block; height:310px; overflow:hidden;
  2740. }
  2741. .group-content-wrapper{display:block; width:100%; z-index:1;}
  2742. &:after{opacity:0.6; z-index:0;}
  2743. }
  2744. }
  2745. &.formations{
  2746. @include shaddowed();
  2747. position: relative;
  2748. height:300px;
  2749. margin-top: 30px;
  2750. background-color: #000;
  2751. color: #FFF;
  2752. a{color: #FFF;}
  2753. .node{
  2754. padding:0 0 0 30%; width:70%;
  2755. &:before{
  2756. content:" ";
  2757. background: transparent url("../img/formations.png") no-repeat center center;
  2758. background-clip: padding-box;
  2759. background-size: contain;
  2760. position: absolute; left:0;
  2761. // border: 1px solid red;
  2762. z-index: 2;
  2763. width:30%; height:100%;
  2764. // padding:0.5em;
  2765. }
  2766. }
  2767. .group-content-wrapper{
  2768. padding:1em; position:relative;
  2769. .field-name-title-field{
  2770. font-size: 2.1em; font-weight: 300;
  2771. }
  2772. .field-name-body{
  2773. margin-top: 1em;
  2774. }
  2775. }
  2776. @media #{$small-only}{
  2777. height:auto;
  2778. }
  2779. }
  2780. &.services{
  2781. @include shaddowed();
  2782. background-color: #FFF;
  2783. height:300px;
  2784. margin-top: 30px;
  2785. .node{
  2786. padding:0 30% 0 0; width:70%;
  2787. &:before{
  2788. content:" ";
  2789. background: transparent url("../img/services.png") no-repeat center center;
  2790. background-clip: padding-box;
  2791. background-size: contain;
  2792. position: absolute; right:0;
  2793. // border: 1px solid red;
  2794. z-index: 2;
  2795. width:30%; height:100%;
  2796. // padding:0.5em;
  2797. }
  2798. }
  2799. .group-content-wrapper{
  2800. padding:1em; position:relative;
  2801. .field-name-title-field{
  2802. font-size: 2.1em; font-weight: 300;
  2803. }
  2804. .field-name-body{
  2805. margin-top: 1em;
  2806. }
  2807. .field-name-field-liens a{background-color: rgba(230,230,230, 0.8);}
  2808. }
  2809. @media #{$small-only}{
  2810. height:auto;
  2811. }
  2812. }
  2813. &.publication{
  2814. @include shaddowed();
  2815. position: relative;
  2816. // height:300px;
  2817. margin-top: 30px;
  2818. padding:1em;
  2819. background-color: #000;
  2820. &, a, h1, h2{color: #fff;}
  2821. @include rounded(10px);
  2822. .view-publication-home-v2{
  2823. .views-row{
  2824. @include inlineblock();
  2825. width:30%;
  2826. h1{display:none;}
  2827. }
  2828. }
  2829. @media #{$small-only}{
  2830. .view-publication-home-v2{
  2831. .views-row{display:block; width:90%; margin-bottom: 1em;}
  2832. }
  2833. }
  2834. }
  2835. }
  2836. //mini panneau news
  2837. >.panel-panel>div>.pane-news-home-v2{
  2838. background-color: #e6e6e6; @include rounded(10px);
  2839. margin-top: 30px; padding-top: 1em; padding-bottom: 1em;
  2840. // padding:0;
  2841. position: relative;
  2842. // .panel-col-first{width:70%;}
  2843. // .panel-col-last{width:29.9%;}
  2844. h2{font-size: 30px;}
  2845. @media #{$medium-up}{
  2846. #mini-panel-news_home_v2 .center-wrapper{
  2847. @include grid-row();
  2848. .panel-panel{
  2849. overflow:hidden;
  2850. @include grid-column(4);
  2851. // width:32.8%;
  2852. padding:0em; margin-left:1em;
  2853. &.panel-col-first{width:auto;}
  2854. &:not(.panel-col-first){width:31%;}
  2855. .inside{margin:0;}
  2856. article.node, article.node-breve.vm-cardbig{margin:0; height:610px;}
  2857. }
  2858. }
  2859. }
  2860. #mini-panel-news_home_v2 .panel-col-bottom{
  2861. @include grid-row(); margin-top: 1.5em; margin-bottom: 1.5em;
  2862. >.inside{
  2863. @include grid-column(12);
  2864. }
  2865. p{display:none;}
  2866. .form-checkboxes{
  2867. margin:0 0 0.5em 0;
  2868. .form-item{
  2869. @include inlineblock(); margin-right: 1em;
  2870. label, input{vertical-align: middle;}
  2871. }
  2872. }
  2873. .form-item-mail{
  2874. @include inlineblock(); margin:0;
  2875. label, input{@include inlineblock(); margin-right: 1em;}
  2876. }
  2877. #edit-subscribe, #edit-unsubscribe{@include inlineblock();}
  2878. }
  2879. // .view-news-home-v2{
  2880. // .views-row{@include inlineblock();}
  2881. // }
  2882. .node-simplenews{
  2883. @include rounded(5px); background-color: #FFF;
  2884. @include drop-shadow(0, 0, 5px, 0.2);
  2885. @include transition-simply-prefix(box-shadow 0.3s ease-out);
  2886. overflow:hidden;
  2887. position:relative;
  2888. margin:7px;
  2889. >a{
  2890. position:absolute;
  2891. bottom:0; width:100%;
  2892. background-color: #FFF;
  2893. text-align: center;
  2894. h1{
  2895. padding: 10px; margin:0;
  2896. font-size:1em;
  2897. }
  2898. }
  2899. }
  2900. //deco
  2901. &:after{
  2902. content:url("../img/point.png");
  2903. //transform: scale(1);
  2904. position: absolute;
  2905. bottom:20px;
  2906. right: 10px;
  2907. }
  2908. @media #{$small-only}{
  2909. background-color: transparent;
  2910. #mini-panel-news_home_v2 .center-wrapper{
  2911. .panel-panel.panel-col-first{max-width:100%;}
  2912. .panel-panel:not(.panel-col-first){display:none;}
  2913. }
  2914. &:after{z-index: -1; opacity:0.4;}
  2915. }
  2916. }
  2917. #contact-pane{
  2918. margin:2em 0; padding:1em;
  2919. background-color: #e6e6e6;
  2920. .field-name-body{
  2921. text-align: center;
  2922. p{
  2923. @include inlineblock();
  2924. min-width: 20%;
  2925. }
  2926. }
  2927. }
  2928. } // homeV2
  2929. /*
  2930. _ __
  2931. _____(_)___ ___ ____ / /__ ____ ___ _ _______
  2932. / ___/ / __ `__ \/ __ \/ / _ \/ __ \/ _ \ | /| / / ___/
  2933. (__ ) / / / / / / /_/ / / __/ / / / __/ |/ |/ (__ )
  2934. /____/_/_/ /_/ /_/ .___/_/\___/_/ /_/\___/|__/|__/____/
  2935. /_/
  2936. */
  2937. .node-type-simplenews{
  2938. img{
  2939. max-width: none !important;
  2940. }
  2941. }
  2942. /*
  2943. _ _ _ _ _
  2944. | | | (_) | | (_)
  2945. _ __ _ _| |__ | |_ ___ __ _| |_ _ ___ _ __ ___
  2946. | '_ \| | | | '_ \| | |/ __/ _` | __| |/ _ \| '_ \/ __|
  2947. | |_) | |_| | |_) | | | (_| (_| | |_| | (_) | | | \__ \
  2948. | .__/ \__,_|_.__/|_|_|\___\__,_|\__|_|\___/|_| |_|___/
  2949. | |
  2950. |_|
  2951. */
  2952. body.node-type-publication{
  2953. article.node-publication{
  2954. .field{
  2955. figure, img{max-width:100%;}
  2956. }
  2957. @media #{$large-up}{
  2958. .field{@include inlineblock();}
  2959. .field-name-field-couverture{width:25%;}
  2960. .field-name-body{
  2961. margin-left: 1em;
  2962. width:70%;
  2963. }
  2964. }
  2965. }
  2966. }
  2967. @import "misc.scss";
  2968. // end