styles.scss 88 KB

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