styles.scss 90 KB

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