app.scss 47 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043
  1. @import './base/reset';
  2. @import './base/variables';
  3. @import './base/colors';
  4. @import './base/grid-flex';
  5. @import './base/transitions';
  6. @import './base/layout';
  7. @import './base/fonts';
  8. // your-app.scss
  9. // @import '~@sweetalert2/themes/dark/dark.scss';
  10. /* The emerging W3C standard
  11. that is currently Firefox-only */
  12. * {
  13. scrollbar-width: thin;
  14. scrollbar-color: $grisclair rgba(255,255,255,0);
  15. }
  16. /* Works on Chrome/Edge/Safari */
  17. *::-webkit-scrollbar {
  18. width: 12px;
  19. }
  20. *::-webkit-scrollbar-track {
  21. background: rgba(255,255,255,0);
  22. }
  23. *::-webkit-scrollbar-thumb {
  24. background-color: $grisclair;
  25. border-radius: 20px;
  26. border: none;
  27. }
  28. body{
  29. color: #1a1a1a;
  30. // background-image: url('/static/img/grille-ligne-de-base.png');
  31. // background-repeat: repeat;
  32. }
  33. #root{
  34. }
  35. .red{
  36. background-color: red;
  37. color:white;
  38. }
  39. header[role="banner"]{
  40. div.wrapper{
  41. display: grid;
  42. grid-template-columns: 1fr 1fr;
  43. }
  44. h1.site-title{
  45. grid-column: 1;
  46. margin:0;
  47. font-size: 1em;
  48. }
  49. nav#header-menu{
  50. grid-column: 2;
  51. text-align: right;
  52. >ul>li{
  53. display: inline-block;
  54. margin-right: 1em;
  55. position: relative;
  56. >ul{
  57. position: absolute;
  58. top:1em; right:-1em;
  59. overflow: hidden;
  60. padding-bottom: 0.5em;
  61. background-color: white;
  62. >li{
  63. padding:0 1em;
  64. // margin-right: -1em;
  65. transition: height 0.3s ease-in-out;
  66. height:0;
  67. overflow: hidden;
  68. }
  69. }
  70. //
  71. // &:focus-within
  72. // &:hover,
  73. &.opened{
  74. >ul>li{
  75. height:1em;
  76. }
  77. }
  78. &.has-submenu{
  79. cursor: pointer;
  80. }
  81. }
  82. li>span,li>a{
  83. font-size: 0.9em;
  84. color: $bleuroi;
  85. text-transform: uppercase;
  86. }
  87. }
  88. }
  89. section[role="main-content"]{
  90. #home{
  91. header{
  92. margin:15vh 0 0;
  93. text-align: center;
  94. padding: 1em 0;
  95. h1{
  96. color: $bleuroi;
  97. font-size: 8em;
  98. font-weight: 300;
  99. margin: 0;
  100. }
  101. h2{
  102. color: $or;
  103. font-size: 2em;
  104. font-weight: 300;
  105. margin:1em 0 0;
  106. text-transform: uppercase;
  107. letter-spacing: 0.2em;
  108. sup{
  109. // line-height: 5em;
  110. vertical-align:text-top;
  111. font-size: 0.7em
  112. }
  113. }
  114. }
  115. // $filet_space:8em;
  116. // $decallage: 0.5em;
  117. section{
  118. padding-top: 8em;
  119. }
  120. @mixin teasersfilet($filet_space, $decallage){
  121. z-index: 1;
  122. &:before, &:after{
  123. z-index: 0;
  124. content: "";
  125. position: absolute;
  126. opacity: 0.4;
  127. pointer-events: none;
  128. }
  129. &:before{
  130. border:1px solid $or;
  131. width:calc(100% + #{$filet_space*2 + $decallage*2});
  132. left:- $filet_space - $default_gap/2 -$decallage;
  133. height:calc(100% + #{$filet_space});
  134. top:- $filet_space / 2;
  135. }
  136. &:after{
  137. border:1px solid $rouge;
  138. width:calc(100% + #{$filet_space*2});
  139. left:- $filet_space - $default_gap/2;
  140. height:calc(100% + #{$filet_space + $decallage*2});
  141. top:- $filet_space / 2 - $decallage;
  142. }
  143. }
  144. div.teasers>.wrapper{
  145. display: flex;
  146. flex-direction: row;
  147. flex-wrap: nowrap;
  148. position: relative;
  149. padding-right: 0;
  150. article{
  151. box-sizing: border-box;
  152. flex-basis: percentage(2 / ( $default_sum - 6) );
  153. padding-right: $default_gap;
  154. @include fontsans;
  155. h1{
  156. color: $bleuroi;
  157. }
  158. p{
  159. font-size: 0.882em;
  160. line-height: 1.2;
  161. }
  162. a.readmore span{
  163. color:$rouge;
  164. font-size:0.693em;
  165. }
  166. }
  167. // filets decoratif
  168. @include teasersfilet(8em, 0.5em);
  169. }
  170. // responsive
  171. @media only screen and (max-width: $small-bp), (orientation: portrait) {
  172. header{
  173. h1{
  174. font-size: 5em;
  175. margin:7vh 0 0;
  176. }
  177. h2{
  178. font-size: 1em;
  179. }
  180. }
  181. section{
  182. padding-top: 4em;
  183. }
  184. div.teasers{
  185. flex-direction: column;
  186. // filets decoratif
  187. @include teasersfilet(4em, 0.5em);
  188. }
  189. }
  190. }
  191. #list-corpus, .index{
  192. >header{
  193. &>h1{
  194. @include titleSansRed;
  195. margin: 0;
  196. }
  197. }
  198. &#list-corpus{
  199. >section>.wrapper>ul{
  200. >li{
  201. margin-bottom: $base-line*2;
  202. >header{
  203. margin-bottom: 0;
  204. h2,h3,h4{
  205. display: inline-block;
  206. margin: 0;
  207. margin-bottom: $base-line/2;
  208. }
  209. }
  210. section.notice{
  211. p{
  212. margin-top:0;
  213. font-size: 1.134em;
  214. line-height: $base-line * 0.7;
  215. // margin-bottom: $base-line * 0.7;
  216. }
  217. margin-bottom: $base-line/2;
  218. }
  219. section.editions{
  220. h4{
  221. font-size: 1em;
  222. line-height: $base-line * 0.8;
  223. // margin-bottom: $base-line / 2;
  224. }
  225. }
  226. section.texts {
  227. >h4{
  228. font-size: 1em;
  229. line-height: $base-line * 0.5;
  230. margin-bottom: $base-line / 2;
  231. }
  232. ul.texts-list{
  233. padding-left: 1em;
  234. >li{
  235. list-style: circle;
  236. h3{
  237. @include title1blue;
  238. font-size: 1.512em;
  239. line-height: $base-line * 0.5;
  240. margin-bottom: $base-line * 0.5;
  241. }
  242. p{
  243. font-size: 1em;
  244. @include fontserif;
  245. font-weight: 300;
  246. margin-top:0;
  247. font-size: 1em;
  248. line-height: $base-line * 0.5;
  249. margin-bottom: $base-line / 2;
  250. }
  251. margin-bottom: $base-line;
  252. }
  253. }
  254. }
  255. }
  256. }
  257. }
  258. article.item{
  259. // margin: 2em 0 0;
  260. header{
  261. margin:0;
  262. h1{
  263. margin:0;
  264. span.title{
  265. @include title1black;
  266. color: $bleuroi;
  267. }
  268. span.quantity{
  269. @include title4black;
  270. }
  271. }
  272. }
  273. }
  274. &:not(#list-corpus){
  275. ul.item-list{
  276. li{
  277. margin-bottom: $base-line;
  278. max-height: $base-line * 3;
  279. opacity: 1;
  280. transition: all 0.3s ease-in-out;
  281. &.hidden {
  282. // display: none;
  283. max-height: 0.001px;
  284. opacity: 0;
  285. margin-bottom: 0.001px;
  286. overflow: hidden;
  287. }
  288. }
  289. }
  290. }
  291. ul.item-list{
  292. li{
  293. // margin: 0 0 2em 0;
  294. margin-bottom: $base-line;
  295. header{
  296. h2{
  297. @include title1blue;
  298. // margin:0.4em 0 0.2em;
  299. margin-bottom: $base-line / 2;
  300. }
  301. h3{
  302. margin:0;
  303. @include fontsans;
  304. font-size: 0.756em;
  305. font-weight: 500;
  306. line-height: $base-line / 2;
  307. }
  308. section.notice{
  309. @include fontsans;
  310. font-size: 0.756em;
  311. font-weight: 300;
  312. line-height: $base-line / 2;
  313. }
  314. margin-bottom: $base-line / 2;
  315. }
  316. h4{
  317. margin:0;
  318. font-weight: 300;
  319. @include fontsans;
  320. font-size: 0.756em;
  321. line-height: $base-line / 2;
  322. &.texts-quantity{
  323. color: $rouge;
  324. margin-bottom: $base-line / 4;
  325. }
  326. }
  327. section.editions{
  328. div.editions{
  329. ol{
  330. padding:0;
  331. li{
  332. margin:0.7em 1em;
  333. }
  334. }
  335. }
  336. }
  337. section.texts{
  338. ul.texts-list{
  339. // padding: 0 0 0 1em;
  340. li{
  341. margin-bottom: $base-line / 2;
  342. }
  343. h3{
  344. @include title2black;
  345. // margin: 0.7em 0 0.3em;
  346. line-height: $base-line / 2;
  347. }
  348. p{
  349. font-weight: 300;
  350. @include fontsans;
  351. font-size: 0.756em;
  352. margin: 0;
  353. line-height: $base-line / 2;
  354. }
  355. }
  356. }
  357. ul {
  358. li{
  359. // margin:0 0 0 1em;
  360. h3{
  361. margin: 0.5em 0;
  362. font-weight: 400;
  363. font-size: 1em;
  364. }
  365. }
  366. }
  367. }
  368. }
  369. .abc{
  370. ul{
  371. li{
  372. opacity: 1;
  373. transition: opacity 0.3s ease-in-out;
  374. padding: 3px;
  375. &.inactive{
  376. opacity: 0.4;
  377. }
  378. span.tout, span.letter{
  379. @include fontcaption;
  380. font-variant: small-caps;
  381. font-size: 1em;
  382. cursor: pointer;
  383. // line-height: $base-line / 2;
  384. border: 1px solid $grisclair;
  385. border-radius: 3px;
  386. padding: 0.3em;
  387. display: inline-block;
  388. text-align: center;
  389. }
  390. &:not(:first-of-type) span.letter{
  391. width: 1.1em; height: 1.1em;
  392. }
  393. span.quantity{
  394. font-size: 0.765em;
  395. }
  396. }
  397. }
  398. }
  399. }
  400. .index-item{
  401. header{
  402. h1{
  403. @include title1blue;
  404. line-height: $base-line * 1.2;
  405. // margin:0 0 0.3em;
  406. }
  407. h2{
  408. @include title1black;
  409. margin:0 0 0.3em;
  410. }
  411. section{
  412. margin-bottom: 1em;
  413. h3{
  414. @include title2black;
  415. margin:0 0 0.3em;
  416. font-weight: 600;
  417. }
  418. }
  419. p{
  420. margin: 0 0 0.5em 0;
  421. span.label{ font-weight: 600; }
  422. }
  423. .authors{
  424. a{
  425. @include title2black;
  426. color: $bleuroi;
  427. }
  428. margin:0 0 0.3em;
  429. }
  430. .mdi{
  431. color: $bleuroilight;
  432. font-size: 0.7em;
  433. }
  434. .attested-forms{
  435. ul{
  436. // >li{
  437. // margin: 0 0 1em 0;
  438. // li{
  439. // margin: 0 0 0.5em 0;
  440. // }
  441. // }
  442. }
  443. a{
  444. @include title4grey;
  445. color: $grisfonce;
  446. font-weight: 400;
  447. }
  448. }
  449. }
  450. .tabs{
  451. border-bottom: 1px solid $bleuroilight;
  452. margin-bottom: $base-line / 2;
  453. .tab{
  454. cursor: pointer;
  455. border-radius: 5px 5px 0 0;
  456. z-index: 10;
  457. display: inline-block;
  458. margin-bottom: -2px;
  459. padding: 0.3em 0.5em;
  460. border: 1px solid $bleuroilight;
  461. &.active{
  462. border-bottom: 2px solid white;
  463. }
  464. }
  465. }
  466. .occurences{
  467. >ul{
  468. >li{
  469. padding:0 0 $base-line / 2 0;
  470. h3{
  471. @include title1black;
  472. padding:0 0 $base-line / 2 0;
  473. color: $bleuroi;
  474. }
  475. >ul{
  476. >li{
  477. // padding:0 0 0.5em 0;
  478. section{
  479. h4{
  480. // @include title3black;
  481. @include title4grey;
  482. color: $grisfonce;
  483. font-weight: 400;
  484. display: inline-block;
  485. a{
  486. span.form{
  487. font-style: italic;
  488. margin-top: 0;
  489. font-size: 1.134em;
  490. line-height: $base-line * 0.7;
  491. // margin-bottom: $base-line;
  492. }
  493. }
  494. }
  495. // ? c'est quoi ça ?
  496. // span.open-close{
  497. // cursor: pointer;
  498. // display: inline-block;
  499. // svg{
  500. // transform: rotate(-90deg) scale(0.8);
  501. // transition: transform 0.3s ease-in-out;
  502. // path{
  503. // fill:$bleuroi;
  504. // }
  505. // }
  506. // }
  507. // div.text{
  508. // max-height: 0;
  509. // transition: max-height 0.3s ease-in-out;
  510. // overflow: hidden;
  511. // box-sizing: content-box;
  512. // p, h1, h2, h3, h4, h5, h6{
  513. // margin: 0.5em 0 0 0;
  514. // }
  515. // }
  516. // a.lire-plus{
  517. // color: $bleuroi;
  518. // opacity: 0;
  519. // display: inline-block;
  520. // height: 0;
  521. // overflow: hidden;
  522. // transition: height, opacity 0.3s ease-in-out;
  523. // }
  524. // &.opened{
  525. // span.open-close{
  526. // cursor: pointer;
  527. // display: inline-block;
  528. // svg{
  529. // transform: scale(0.8) rotate(0);
  530. // }
  531. // }
  532. // div.text{
  533. // max-height:100px;
  534. // }
  535. // a.lire-plus{
  536. // opacity: 1;
  537. // height:1em;
  538. // }
  539. // }
  540. }
  541. }
  542. }
  543. }
  544. }
  545. }
  546. .attested-forms-occurences{
  547. >ul{
  548. >li{
  549. margin: 0 0 1em 0;
  550. h3{
  551. @include title1black;
  552. padding:0 0 0 0;
  553. }
  554. li{
  555. // margin: 0 0 0.5em 0;
  556. h4{
  557. // @include title3black;
  558. @include title4grey;
  559. color: $grisfonce;
  560. font-weight: 400;
  561. display: inline-block;
  562. a{
  563. font-style: italic;
  564. margin-top: 0;
  565. font-size: 1.134em;
  566. line-height: $base-line * 0.7;
  567. span.edition{
  568. font-style: italic;
  569. }
  570. }
  571. }
  572. }
  573. }
  574. }
  575. }
  576. nav{
  577. h3{
  578. @include title2black;
  579. margin:0 0 0.5em;
  580. }
  581. h4{
  582. @include title3black;
  583. margin:0 0 0.5em;
  584. color: $bleuroi;
  585. }
  586. }
  587. >nav{
  588. aside.links{
  589. position: absolute;
  590. bottom: 0;
  591. overflow-wrap:anywhere;
  592. }
  593. }
  594. }
  595. #edition{
  596. >header{
  597. position: relative;
  598. span.header-title{ display:none; }
  599. h1{
  600. @include title1blue;
  601. }
  602. aside.notice{
  603. // margin-top: 0;
  604. // font-size: 1em;
  605. // line-height: $base-line *0.5;
  606. // margin-bottom: $base-line / 2;
  607. }
  608. nav.entities-hide-show{
  609. position: absolute;
  610. bottom: 1em;
  611. span{
  612. @include fontsans;
  613. font-size: 0.882em;
  614. cursor: pointer;
  615. }
  616. }
  617. aside.index-tooltip{
  618. z-index:10;
  619. margin-top: -1.75em;
  620. position:absolute;
  621. text-align: right;
  622. right: 2em;
  623. h1 {
  624. @include title2black;
  625. margin:0 0 0.5em 0;
  626. }
  627. p{
  628. margin:0 0 0.5em 0;
  629. }
  630. time{
  631. font-weight: 600;
  632. }
  633. @media only screen and (max-width: $small-bp), (orientation: portrait) {
  634. background-color: #fff;
  635. padding: 1em;
  636. box-shadow: 0 0 10px $gris;
  637. *{
  638. pointer-events: none;
  639. }
  640. }
  641. }
  642. }
  643. // responsive
  644. @media only screen and (max-width: $small-bp), (orientation: portrait) {
  645. >header{
  646. $top: 45px;
  647. z-index: 110;
  648. position: absolute;
  649. top:$top;
  650. left:0;
  651. background-color: #fff;
  652. width:percentage(5/$default_sum);
  653. box-sizing: border-box;
  654. padding-top: 1em;
  655. padding-bottom: 1em;
  656. height:calc(100% - #{$top});
  657. transform: translateX(-100%);
  658. transition: transform 0.3s ease-in-out;
  659. span.header-title{
  660. display: block;
  661. position: absolute;
  662. top:4.5em; right:-1em;
  663. transform: rotateZ(-90deg);
  664. transform-origin: center;
  665. @include fontsans;
  666. font-size: 0.600em;
  667. cursor: pointer;
  668. color: $bleuroi;
  669. svg{
  670. vertical-align: bottom;
  671. transform-origin: center;
  672. transform: scale(0.8) rotate(0);
  673. transition: transform 0.3s ease-in-out;
  674. path{
  675. fill: $bleuroi;
  676. }
  677. }
  678. }
  679. &.opened{
  680. box-shadow: 3px 3px 5px $grisclair;
  681. transform: translateX(0);
  682. span.header-title{
  683. svg{
  684. transform: scale(0.7) rotate(180deg);
  685. }
  686. }
  687. }
  688. }
  689. }
  690. $pagenum_w:1em;
  691. >section{
  692. padding-right: 0;
  693. >.wrapper{
  694. padding-right: $pagenum_w*3;
  695. // outline: orange solid thin;
  696. }
  697. div#text{
  698. // .infinite-loading-container{
  699. // height:0;
  700. // overflow: hidden;
  701. // }
  702. .text-wrapper{
  703. // padding-left: 1em;
  704. position: relative;
  705. }
  706. .textrefcopylink{
  707. display: block;
  708. position: absolute;
  709. z-index: 99;
  710. span.mdi-open-in-new {
  711. position: relative;
  712. z-index: 10;
  713. margin-left: 1px;
  714. }
  715. .popup{
  716. position: absolute;
  717. top:0;
  718. left: 1px;
  719. // width: 15em;
  720. background-color: #fff;
  721. border-radius: 3px;
  722. padding: 1em 1em 1em 1.5em;
  723. box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
  724. display: none;
  725. opacity: 0.1;
  726. // outline: 1px solid blue;
  727. transition: opacity 2s ease-in-out;
  728. button.copy-btn{
  729. display: block;
  730. padding: 0.5em 0.2em;
  731. @include fontcaption;
  732. white-space: nowrap;
  733. border: none;
  734. background: none;
  735. cursor: pointer;
  736. }
  737. }
  738. // todo what about touch is hover will work ?
  739. &:hover .popup{
  740. display: block;
  741. opacity: 1;
  742. transition: opacity 2s ease-in-out;
  743. }
  744. }
  745. div.tei{
  746. position: relative;
  747. width: calc(100% - #{$pagenum_w});
  748. // DEBUG
  749. color:chartreuse;
  750. &>*{ color: #1A1A1A;}
  751. // @media only screen and (min-width: $small-bp + 1) {
  752. padding-right: $pagenum_w;
  753. border-left: 1px dotted $grisclair;
  754. padding-left: 1em;
  755. margin-left:1.2em;
  756. overflow: visible;
  757. &.active{
  758. border-left: 1px dotted $bleuroi;
  759. }
  760. // }
  761. // front page
  762. header{
  763. padding-top: $base-line;
  764. h1{
  765. @include teititlefrontblue;
  766. .initial{
  767. display: inline-block;
  768. text-transform: uppercase;
  769. font-size: 1.3em;
  770. line-height: $base-line*2;
  771. margin: $base-line/2 0;
  772. }
  773. margin-bottom: $base-line;
  774. }
  775. }
  776. span.metamark.tailpiece,
  777. span.metamark.simpleLine{
  778. display: block;
  779. border-top: 1px solid $gris;
  780. margin: $base-line / 2 auto;
  781. }
  782. .byline{
  783. text-align: center;
  784. font-style: italic;
  785. padding-bottom: 1em;
  786. color: $bleuroi;
  787. &:last-of-type{
  788. padding-bottom: $base-line*2;
  789. }
  790. }
  791. .docImprint{
  792. text-align: center;
  793. // padding-bottom: 1em;
  794. color: $bleuroi;
  795. font-size: 1.3em;
  796. line-height: $base-line;
  797. .pubPlace{
  798. display: block;
  799. }
  800. .publisher{
  801. display: block;
  802. }
  803. .docDate{
  804. display: block;
  805. // margin-top: $base-line / 2;
  806. font-weight: 700;
  807. }
  808. }
  809. .docEdition{
  810. display: block;
  811. text-align: center;
  812. color: $bleuroi;
  813. font-size: 1.3em;
  814. line-height: $base-line;
  815. }
  816. span.epigraph{
  817. display: block;
  818. text-align: center;
  819. color: $bleuroi;
  820. font-size: 1em;
  821. line-height: $base-line;
  822. border-top: 1px $gris solid;
  823. border-bottom: 1px $gris solid;
  824. }
  825. .imprimatur{
  826. text-align: center;
  827. font-style: italic;
  828. color: $bleuroi;
  829. font-size: 1.3em;
  830. line-height: $base-line;
  831. padding-bottom: $base-line;
  832. &:last-of-type{
  833. padding-bottom: $base-line*2;
  834. }
  835. }
  836. >h1{
  837. @include teititle1blue;
  838. }
  839. h1{ font-size: 1.512em;
  840. line-height: $base-line; }
  841. p{
  842. margin-top: 0;
  843. font-size: 1.134em;
  844. line-height: $base-line;
  845. margin-bottom: $base-line / 2;
  846. span.no-wrap{
  847. white-space: nowrap;
  848. }
  849. span.persName,
  850. span.placeName,
  851. span.objectName{
  852. font-weight: 500;
  853. }
  854. a{
  855. font-weight: 500;
  856. &.active-link{
  857. // color: $rouge;
  858. // text-decoration: underline;
  859. // line-height: $base-line/2;
  860. }
  861. // sup.mdi{
  862. // font-size: 0.630em;
  863. // vertical-align: super;
  864. // // line-height: 0.1;
  865. // padding: 0 0.2em;
  866. // }
  867. }
  868. }
  869. $bq_padd: 2em;
  870. blockquote{
  871. padding: 0 $bq_padd;
  872. margin: $base-line/2 0;
  873. line-height: $base-line;
  874. p{
  875. margin: 0;
  876. }
  877. }
  878. ul, ol{
  879. padding: 0 0 0 2em;
  880. li{
  881. list-style: disc;
  882. }
  883. }
  884. span.mdi.index-item-icon{
  885. font-size: 14px;
  886. vertical-align: super;
  887. line-height: 0;
  888. }
  889. // span[role="pageBreak"]{
  890. // display: block;
  891. // height:1.5em;
  892. // }
  893. span.simpleLine + span[role="pageBreak"]{
  894. height:0em;
  895. margin-top: -1em;
  896. }
  897. span.metamark.typographicalPiece + span[role="pageBreak"]{
  898. height:0em;
  899. }
  900. span.metamark.typographicalPiece{
  901. display: block;
  902. height: 1.5em;
  903. }
  904. span.metamark.typographicalPiece + span.metamark.typographicalPiece{
  905. display: none;
  906. }
  907. span[role="pageNum"]{
  908. font-size: 16px;
  909. position: relative;
  910. float:right;
  911. width: $pagenum_w; height:$base-line/4;
  912. border-bottom: 1px solid $bleuroilight;
  913. border-right: 1px solid $bleuroilight;
  914. // outline: solid red thin;
  915. // margin-left:calc(100% - #{$pagenum_w * 2});
  916. // margin-left: 100%;
  917. margin-right: - $pagenum_w * 1.5;
  918. &:before{
  919. // outline: solid green thin;
  920. content:attr(data-num);
  921. font-size: 0.630em;
  922. line-height: $base-line/3;
  923. position: absolute;
  924. right: 0;
  925. top:$base-line/2;
  926. color: $bleuroi;
  927. // top:0;
  928. // width: $pagenum_w*2; height: $pagenum_w;
  929. // border-top: 1px solid $bleuroilight;
  930. // border-right: 1px solid $bleuroilight;
  931. // text-indent: $pagenum_w * 2.5;
  932. }
  933. }
  934. blockquote span[role="pageNum"]{
  935. margin-right: - $pagenum_w * 1.5 - $bq_padd;
  936. // &:before{
  937. // right: -$bq_padd;
  938. // }
  939. }
  940. a.text-item-link{
  941. // float: left;
  942. position: absolute;
  943. top:0; left:0;
  944. // display: block;
  945. // width:1em; height:1em;
  946. font-size: 0.630em;
  947. .mdi{
  948. color: $bleuroi;
  949. pointer-events: none;
  950. }
  951. }
  952. figure{
  953. // outline: 1px solid red;
  954. background-color: $grisclair;
  955. margin:1em 0;
  956. img{
  957. width: 100%;
  958. }
  959. figcaption{
  960. @include fontcaption;
  961. padding: 0.5em;
  962. }
  963. }
  964. ul{
  965. line-height: $base-line;
  966. margin-bottom: $base-line/2;
  967. }
  968. }
  969. &.entities-hidden{
  970. span.mdi.index-item-icon{ display: none;}
  971. }
  972. }
  973. }
  974. >nav{
  975. $filter_m: 0.3em;
  976. $pager_h:18px;
  977. display: flex;
  978. flex-direction: column;
  979. span.nav-title{ display:none; }
  980. section#toc{
  981. $m:0.5em;
  982. box-sizing: content-box;
  983. padding:0 0 1em 1.5em;
  984. margin-bottom: $m;
  985. height:calc(100% - #{$pager_h} - #{$m} - #{$filter_m} * 2);
  986. overflow-x: hidden;
  987. overflow-y: auto;
  988. line-height: $base-line / 2;
  989. // section.tocitem{
  990. // position: relative;
  991. // &:after{
  992. // display: block;
  993. // position:absolute;
  994. // top:0; right:0;
  995. // color: red;
  996. // content: attr(type);
  997. // font-size: 11px;
  998. // border: 1px solid red;
  999. // border-radius: 3px;
  1000. // padding: 0px 2px;
  1001. // }
  1002. // }
  1003. >ul{
  1004. >li{
  1005. section.tocitem{
  1006. ul{
  1007. overflow: hidden;
  1008. max-height: 10000px;
  1009. transition: max-height 0.5s ease-in-out;
  1010. &:not(.opened):not(.init_opened){
  1011. max-height:0;
  1012. transition: max-height 0.5s cubic-bezier(0, 1.05, 0, 1);
  1013. }
  1014. &:not([level="1"]){
  1015. border-left: 0.5px solid $grisclair;
  1016. margin-bottom: 0em;
  1017. li{
  1018. padding:0 0 0 1em;
  1019. }
  1020. }
  1021. }
  1022. &.notitle>ul>li{
  1023. padding:0;
  1024. }
  1025. }
  1026. }
  1027. }
  1028. section.tocitem{
  1029. &[level="1"]:not([type="front"]),
  1030. &[level="2"]{
  1031. padding-top: 0.4em;
  1032. }
  1033. }
  1034. .toc-title{
  1035. @include title4grey;
  1036. color: $grismoyen;
  1037. &.active,
  1038. &:hover{
  1039. color:$grisfonce;
  1040. font-weight: 600;
  1041. }
  1042. &.loaded{
  1043. color:$grisfonce;
  1044. }
  1045. &.notitle{
  1046. color: red;
  1047. }
  1048. &.disabled{
  1049. color: $grisclair;
  1050. pointer-events: none;
  1051. }
  1052. }
  1053. h2.toc-title{
  1054. font-size: 1.1em;
  1055. color: $bleuroilight;
  1056. &:hover, &.loaded{
  1057. color: $bleuroi;
  1058. }
  1059. }
  1060. h3.toc-title{font-size: 1em;}
  1061. h4.toc-title{font-size: 0.9em;}
  1062. h5.toc-title{font-size: 0.8em;}
  1063. h6.toc-title{font-size: 0.7em;}
  1064. // span.toc-title{font-size: 0.882em;}
  1065. // >ul{
  1066. // ul{
  1067. // li{
  1068. // ul{
  1069. // overflow: hidden;
  1070. // max-height: 10000px;
  1071. // transition: max-height 0.5s ease-in-out;
  1072. // // transform: scaleY(1);
  1073. // // transform-origin: top;
  1074. // // transition: transform 0.3s ease-in-out;
  1075. // &:not(.opened){
  1076. // // height:0;
  1077. // max-height:0;
  1078. // transition: max-height 0.5s cubic-bezier(0, 1.05, 0, 1);
  1079. // // transform: scaleY(0);
  1080. // }
  1081. // // &.opened{
  1082. // // border: 1px solid red;
  1083. // // }
  1084. // // padding-left: 1em;
  1085. // border-left: 0.5px solid $grisclair;
  1086. // // min-height: 1em;
  1087. // margin-bottom: 0em;
  1088. // li{
  1089. // // min-height: 1em;
  1090. // // border-left: 1px solid red;
  1091. // padding:0 0 0 1em;
  1092. // }
  1093. // }
  1094. // }
  1095. // }
  1096. // .toc-title{
  1097. // @include title4grey;
  1098. // &.active,
  1099. // &:hover{
  1100. // color:$grisfonce;
  1101. // font-weight: 600;
  1102. // }
  1103. // &.loaded{
  1104. // color:$grisfonce;
  1105. // }
  1106. // &.notitle{
  1107. // color: red;
  1108. // }
  1109. // }
  1110. // h2.toc-title{font-size: 1.1em;}
  1111. // h3.toc-title{font-size: 1em;}
  1112. // h4.toc-title{font-size: 0.9em;}
  1113. // h5.toc-title{font-size: 0.8em;}
  1114. // h6.toc-title{font-size: 0.7em;}
  1115. // // span.toc-title{font-size: 0.882em;}
  1116. // }
  1117. }
  1118. div#indexes-filters{
  1119. // height:$pager_h;
  1120. overflow: hidden;
  1121. box-sizing: content-box;
  1122. padding:0 0 0 1.5em;
  1123. margin: 0 0 $filter_m 0;
  1124. select{
  1125. option{
  1126. padding:0;
  1127. }
  1128. }
  1129. }
  1130. div#page-nav{
  1131. height:$pager_h;
  1132. overflow: hidden;
  1133. box-sizing: content-box;
  1134. padding:0 0 0 1.5em;
  1135. margin: 0 0 $filter_m 0;
  1136. select{
  1137. option{
  1138. padding:0;
  1139. }
  1140. }
  1141. }
  1142. }
  1143. // responsive
  1144. @media only screen and (max-width: $small-bp), (orientation: portrait) {
  1145. position: relative;
  1146. >nav{
  1147. $top: 45px;
  1148. z-index: 2;
  1149. position: absolute;
  1150. top:$top;
  1151. right:0;
  1152. background-color: #fff;
  1153. width:percentage(10/$default_sum);
  1154. box-sizing: border-box;
  1155. padding-top: 1em;
  1156. padding-bottom: 1em;
  1157. height:calc(100% - #{$top});
  1158. transform: translateX(100%);
  1159. transition: transform 0.3s ease-in-out;
  1160. span.nav-title{
  1161. display: block;
  1162. position: absolute;
  1163. top:4.5em; left:-1.8em;
  1164. transform: rotateZ(-90deg);
  1165. transform-origin: center;
  1166. @include fontsans;
  1167. font-size: 0.600em;
  1168. cursor: pointer;
  1169. color: $bleuroi;
  1170. svg{
  1171. vertical-align: bottom;
  1172. transform-origin: center;
  1173. transform: scale(0.8) rotate(180deg);
  1174. transition: transform 0.3s ease-in-out;
  1175. path{
  1176. fill: $bleuroi;
  1177. }
  1178. }
  1179. }
  1180. &.opened{
  1181. box-shadow: -3px -3px 5px $grisclair;
  1182. transform: translateX(0);
  1183. span.nav-title{
  1184. svg{
  1185. transform: scale(0.7) rotate(0);
  1186. }
  1187. }
  1188. }
  1189. }
  1190. }
  1191. }
  1192. #biblio{
  1193. >header{
  1194. &>h1{
  1195. @include titleSansRed;
  1196. margin: 0;
  1197. }
  1198. li{
  1199. margin: 0.5em 0 0;
  1200. a{
  1201. @include title2black;
  1202. &.router-link-active{
  1203. font-weight: 600;
  1204. }
  1205. }
  1206. }
  1207. }
  1208. .biblio-item{
  1209. h2{
  1210. color: $bleuroi;
  1211. }
  1212. p{
  1213. span.label{
  1214. font-weight: 600;
  1215. }
  1216. }
  1217. }
  1218. ul.item-list{
  1219. margin:0;
  1220. padding:0;
  1221. li{
  1222. padding:0;
  1223. margin:0 0 $base-line 0;
  1224. h2{
  1225. margin:0;
  1226. @include title1black;
  1227. color: $bleuroi;
  1228. }
  1229. p{
  1230. margin:0;
  1231. }
  1232. span.date{
  1233. @include title2black;
  1234. font-weight: 600;
  1235. }
  1236. aside{
  1237. overflow: hidden;
  1238. h5{
  1239. @include title2black;
  1240. margin: $base-line / 2 0;
  1241. cursor: pointer;
  1242. // padding-left: 1em;
  1243. // position: relative;
  1244. &:before{
  1245. cursor: pointer;
  1246. content:"\2304";
  1247. position: relative;
  1248. display: inline-block;
  1249. top: -4px;
  1250. // transform-origin: center;
  1251. // transform: rotateZ(-90deg);
  1252. }
  1253. }
  1254. ul{
  1255. max-height: 1px;
  1256. transition: all 0.3s ease-in-out;
  1257. padding-left: 1em;
  1258. overflow-y: hidden;
  1259. li{
  1260. margin-bottom: $base-line / 2;
  1261. }
  1262. }
  1263. &.opened{
  1264. h5{
  1265. &:before{
  1266. top: 4px;
  1267. content:"\2303";
  1268. // transform: rotateZ(90deg);
  1269. }
  1270. }
  1271. ul{
  1272. max-height: 100em;
  1273. }
  1274. }
  1275. }
  1276. }
  1277. &.manifestations{
  1278. li{
  1279. max-height: 0.2px;
  1280. margin-bottom:0;
  1281. overflow: hidden;
  1282. transition: all 1s ease-in-out;
  1283. &.active{
  1284. max-height: 10em;
  1285. }
  1286. .wrapper{
  1287. margin-bottom: $base-line;
  1288. }
  1289. }
  1290. }
  1291. }
  1292. ul.authors-filters{
  1293. li{
  1294. @include title4black;
  1295. line-height: $base-line / 2;
  1296. span{
  1297. cursor: pointer;
  1298. color: $gris;
  1299. &.active{
  1300. color: $grisfonce;
  1301. }
  1302. }
  1303. }
  1304. }
  1305. >nav{
  1306. aside.links{
  1307. position: absolute;
  1308. bottom: 0;
  1309. }
  1310. }
  1311. }
  1312. #static{
  1313. @include fontsans;
  1314. >header{
  1315. display: flex;
  1316. flex-direction: column;
  1317. flex-wrap: nowrap;
  1318. h1{
  1319. @include titleSansRed;
  1320. margin-bottom: $base-line * 0.4;
  1321. flex: 0 0 auto;
  1322. }
  1323. nav.toc{
  1324. flex: 1 1 auto;
  1325. overflow-y: auto;
  1326. span.sommaire-title{ display:none; }
  1327. >div.wrapper{
  1328. height:100%;
  1329. overflow-y: auto;
  1330. }
  1331. li{
  1332. a{
  1333. font-size: 1em;
  1334. line-height: $base-line * 0.7;
  1335. font-weight: 300;
  1336. }
  1337. }
  1338. // responsive
  1339. @media only screen and (max-width: $small-bp), (orientation: portrait) {
  1340. $top: 80px;
  1341. z-index: 110;
  1342. position: absolute;
  1343. top:$top;
  1344. left:0;
  1345. background-color: #fff;
  1346. width:percentage(7/$default_sum);
  1347. box-sizing: border-box;
  1348. padding-top: 1em;
  1349. padding-bottom: 1em;
  1350. height:calc(100% - #{$top});
  1351. overflow-y: auto;
  1352. transform: translateX(-100%);
  1353. transition: transform 0.3s ease-in-out;
  1354. >div.wrapper{
  1355. padding-right: 2em;
  1356. height: 100%;
  1357. overflow-y: auto;
  1358. }
  1359. span.sommaire-title{
  1360. display: block;
  1361. position: absolute;
  1362. top:4.5em; right:-2em;
  1363. transform: rotateZ(-90deg);
  1364. transform-origin: center;
  1365. @include fontsans;
  1366. font-size: 0.600em;
  1367. cursor: pointer;
  1368. color: $bleuroi;
  1369. svg{
  1370. vertical-align: bottom;
  1371. transform-origin: center;
  1372. transform: scale(0.8) rotate(0);
  1373. transition: transform 0.3s ease-in-out;
  1374. path{
  1375. fill: $bleuroi;
  1376. }
  1377. }
  1378. }
  1379. &.opened{
  1380. box-shadow: 3px 3px 5px $grisclair;
  1381. transform: translateX(0);
  1382. span.sommaire-title{
  1383. svg{
  1384. transform: scale(0.7) rotate(180deg);
  1385. }
  1386. }
  1387. }
  1388. }
  1389. }
  1390. }
  1391. >section{
  1392. h1{
  1393. font-weight: 400;
  1394. color: $bleuroi;
  1395. }
  1396. p{
  1397. margin-top:0;
  1398. font-size: 1em;
  1399. line-height: $base-line * 0.7;
  1400. font-weight: 300;
  1401. }
  1402. dl{
  1403. font-size: 1em;
  1404. line-height: $base-line * 0.7;
  1405. font-weight: 300;
  1406. span.label{
  1407. font-weight: 400;
  1408. }
  1409. dd{
  1410. margin: 0;
  1411. }
  1412. margin-bottom: $base-line;
  1413. }
  1414. a{
  1415. font-size: 1em;
  1416. line-height: $base-line * 0.7;
  1417. font-weight: 300;
  1418. border-bottom: 1px dotted #1a1a1a;
  1419. // margin-bottom: $base-line * 0.5;
  1420. display: inline-block;
  1421. }
  1422. figure{
  1423. margin: 2em 0;
  1424. img{
  1425. max-width: 100%;
  1426. }
  1427. figcaption{
  1428. @include fontcaption;
  1429. padding: 1em 0;
  1430. }
  1431. }
  1432. }
  1433. }
  1434. }
  1435. footer[role="tools"]{
  1436. $list-item-h: 7em;
  1437. @mixin resultItem{
  1438. box-sizing: border-box;
  1439. // we are only on 10 colls as 2 are occupied by sides
  1440. flex-basis: percentage(2/($default_sum - 2));
  1441. max-height: $list-item-h;
  1442. overflow: hidden;
  1443. padding-bottom: 1em;
  1444. padding-right: $default_gap;
  1445. article{
  1446. max-height: 100%;
  1447. overflow: hidden;
  1448. }
  1449. article.item{
  1450. h1{
  1451. @include title3black;
  1452. font-size: 0.9em;
  1453. font-weight: 600;
  1454. max-width: 95%;
  1455. word-break:normal;
  1456. }
  1457. h2{
  1458. @include title3black;
  1459. text-transform: none;
  1460. }
  1461. span{
  1462. font-size: 0.882em;
  1463. }
  1464. // .preview{
  1465. // font-size: 0.882em;
  1466. // margin:0;
  1467. // code{
  1468. // @include fontserif;
  1469. // background-color: lighten(desaturate($rouge,20%), 20%);
  1470. // padding:0 0.2em;
  1471. // }
  1472. // }
  1473. }
  1474. }
  1475. #history{
  1476. z-index: 8;
  1477. background-color: $or;
  1478. padding:1.2em $side-padding;
  1479. max-height: $list-item-h;
  1480. @include accordeon-transition($list-item-h);
  1481. >header{
  1482. }
  1483. .history-list{
  1484. overflow-x: hidden;
  1485. .wrapper{
  1486. height:100%;
  1487. // hidding the scrollbar
  1488. overflow-y: auto;
  1489. // width:calc(100% + 1em);
  1490. padding-right: 1em;
  1491. >ul{
  1492. padding:0;
  1493. display: flex;
  1494. flex-direction: row;
  1495. flex-wrap: wrap;
  1496. }
  1497. }
  1498. li.item{
  1499. @include resultItem;
  1500. }
  1501. }
  1502. }
  1503. #results{
  1504. z-index: 9;
  1505. background-color: $gris;
  1506. padding:1.2em $side-padding;
  1507. @media only screen and (max-width: $small-bp), (orientation: portrait) {
  1508. padding:1.2em $side-padding/2;
  1509. }
  1510. max-height: $list-item-h * 3;
  1511. @include accordeon-transition($list-item-h * 3);
  1512. >header{
  1513. >*{
  1514. // padding:0 0 5px;
  1515. // line-height: $base-line / 2;
  1516. &.v-select{
  1517. padding-top:5px;
  1518. }
  1519. }
  1520. div.results-details{
  1521. line-height: $base-line * 0.5;
  1522. >*{
  1523. display: block;
  1524. }
  1525. .search-keys{
  1526. font-size: 0.756em;
  1527. font-weight: 500;
  1528. }
  1529. .results-count{
  1530. white-space:nowrap;
  1531. font-size: 0.756em;
  1532. }
  1533. }
  1534. }
  1535. .results-list{
  1536. overflow-x: hidden;
  1537. .wrapper{
  1538. position:relative;
  1539. height:100%;
  1540. // hidding the scrollbar
  1541. overflow-y: auto;
  1542. // width:calc(100% + 1em);
  1543. padding-right: 1em;
  1544. >ul{
  1545. padding:0;
  1546. display: flex;
  1547. flex-direction: row;
  1548. flex-wrap: wrap;
  1549. }
  1550. }
  1551. li.result{
  1552. @include resultItem;
  1553. }
  1554. .infinite-loading-container{
  1555. // TODO: how to center the loading
  1556. }
  1557. }
  1558. >header, section.results-list{
  1559. transition: opacity 0.2s ease-in-out;
  1560. }
  1561. &.loading {
  1562. >header, section.results-list{
  1563. transition: opacity 0.5s ease-in-out;
  1564. opacity:0.5;
  1565. pointer-events: none;
  1566. }
  1567. }
  1568. // responsive
  1569. @media only screen and (max-width: $small-bp), (orientation: portrait) {
  1570. position: relative;
  1571. >header{
  1572. padding:0 0 1em 0;
  1573. >*{
  1574. display: inline-block;
  1575. margin-right: 1em;
  1576. }
  1577. div.results-details{
  1578. >*{
  1579. display: inline-block;
  1580. &:not(:last-child){
  1581. padding-right: 1em;
  1582. }
  1583. }
  1584. }
  1585. #sorting{
  1586. width:10em;
  1587. }
  1588. }
  1589. >section.results-list{
  1590. max-height: 15em;
  1591. li.result{
  1592. flex-basis: 33%;
  1593. }
  1594. }
  1595. >nav{
  1596. position: absolute;
  1597. top:1.2em; right:1.2em;
  1598. }
  1599. }
  1600. }
  1601. #footer-bottom{
  1602. z-index: 10;
  1603. padding:0 $side-padding;
  1604. @media only screen and (max-width: $small-bp), (orientation: portrait) {
  1605. padding:0 $side-padding/2;
  1606. flex-wrap: nowrap;
  1607. }
  1608. background-color: $bleuroi;
  1609. &>*{
  1610. // disable grid gap
  1611. padding-right: 0;
  1612. flex-grow: 0;
  1613. flex-shrink: 0;
  1614. }
  1615. #footer-tabs{
  1616. ul{
  1617. padding:0; margin:0;
  1618. display: flex;
  1619. flex-direction: column;
  1620. li{
  1621. flex: 1 1 auto;
  1622. .wrapper{
  1623. box-sizing: border-box;
  1624. line-height: 0.6em;
  1625. height:2em;
  1626. width: calc(100% + $side-padding);
  1627. margin-left:-$side-padding;
  1628. padding:0.3em 0.5em 0.3em $side-padding;
  1629. @media only screen and (max-width: $small-bp), (orientation: portrait) {
  1630. padding: 0.3em 0em 0.3em 2em;
  1631. }
  1632. }
  1633. &.history .wrapper{
  1634. background-color: $or;
  1635. }
  1636. &.results .wrapper{
  1637. background-color: $gris;
  1638. }
  1639. span{
  1640. font-size: 0.693em;
  1641. font-weight: 400;
  1642. text-transform: uppercase;
  1643. cursor: pointer;
  1644. @include fade-transition;
  1645. }
  1646. }
  1647. }
  1648. }
  1649. #search{
  1650. color: #fff;
  1651. background-color: $bleuroi;
  1652. form{
  1653. padding: 0;
  1654. // display: flex;
  1655. // flex-direction: row;
  1656. // flex-wrap: wrap;
  1657. fieldset{
  1658. padding:0.7em 1em;
  1659. border: none;
  1660. box-sizing:border-box;
  1661. // width correction as row is not the same width as others in the page
  1662. // flex-basis: percentage(2/($default_sum - 1));
  1663. // flex-basis: 17.667%;
  1664. // flex-basis: percentage(2 / 11);
  1665. &:not(:first-of-type){
  1666. border-left: 1px solid $grisclair;
  1667. }
  1668. }
  1669. fieldset.search{
  1670. display: inline-flex;
  1671. align-items: center;
  1672. >div{
  1673. width:80%;
  1674. vertical-align: middle;
  1675. }
  1676. label[for="keys"]{
  1677. display: none;
  1678. }
  1679. input[type="text"]{
  1680. padding:0em 0.3em;
  1681. margin:0 0 0.3em 0;
  1682. box-sizing: border-box;
  1683. font-size: 0.756em;
  1684. line-height: 1;
  1685. width:100%;
  1686. height:1.4em;
  1687. border:none;
  1688. border-radius: 2px;
  1689. }
  1690. span.mdi{
  1691. display: inline-block;
  1692. margin:0 0 0 0.5em;
  1693. font-size: 1.2em;
  1694. line-height:1.1;
  1695. vertical-align:middle;
  1696. width:1.2em; height:1.2em;
  1697. border-radius: 0.6em;
  1698. background-color: #fff;
  1699. color: $bleuroi;
  1700. text-align: center;
  1701. font-weight: 700;
  1702. cursor: pointer;
  1703. }
  1704. }
  1705. }
  1706. fieldset.filters{
  1707. .vs__actions{
  1708. // background-color: $grisclair;
  1709. align-items:baseline;
  1710. padding-top:0.2em;
  1711. }
  1712. }
  1713. form{
  1714. transition: opacity 0.2s ease-in-out;
  1715. }
  1716. &.loading{
  1717. form{
  1718. opacity:0.5;
  1719. transition: opacity 0.5s ease-in-out;
  1720. pointer-events: none;
  1721. }
  1722. }
  1723. // responsive
  1724. @media only screen and (max-width: $small-bp), (orientation: portrait) {
  1725. form{
  1726. fieldset{
  1727. &.search{
  1728. >div{
  1729. display: inline-flex;
  1730. flex-wrap: nowrap;
  1731. width:84%;
  1732. >*{
  1733. flex-basis: 45%;
  1734. margin: 0 0.5em 0 0;
  1735. // box-sizing: content-box;
  1736. // width:auto!important;
  1737. &#keys[type="text"]{
  1738. margin-right:1.5em;
  1739. }
  1740. }
  1741. }
  1742. span.mdi{
  1743. width:1em; height:1em;
  1744. margin-top: -0.1em;
  1745. margin-left: 0;
  1746. }
  1747. }
  1748. &.filters{
  1749. border-left: none;
  1750. flex-basis: 32%;
  1751. padding: 0.2em 0 1em 1em;
  1752. }
  1753. }
  1754. }
  1755. }
  1756. }
  1757. ;
  1758. #logos{
  1759. // max-height: 100%;
  1760. position: relative;
  1761. flex-shrink: 1;
  1762. // display: flex;
  1763. // flex-direction: row;
  1764. // justify-content: flex-end;
  1765. .wrapper{
  1766. position: relative;
  1767. box-sizing: content-box;
  1768. // max-height: 50px;
  1769. padding:1em;
  1770. text-align: right;
  1771. height: 30px;
  1772. img{
  1773. // display: inline-block;
  1774. height: 100%;
  1775. padding-left: 1em;
  1776. }
  1777. }
  1778. }
  1779. }
  1780. h2{
  1781. margin:0;
  1782. font-size: 0.756em;
  1783. font-weight: 400;
  1784. text-transform: uppercase;
  1785. padding:0;
  1786. }
  1787. }
  1788. // vue-select
  1789. .v-select{
  1790. padding:0;
  1791. div[role="combobox"]{
  1792. background-color: #fff;
  1793. padding:0;
  1794. border-radius: 2px;
  1795. border: none;
  1796. }
  1797. input[type="search"]{
  1798. margin:0;
  1799. padding:0;
  1800. -webkit-appearance:textfield;
  1801. -webkit-box-sizing:content-box;
  1802. }
  1803. input::-webkit-search-decoration,
  1804. input::-webkit-search-cancel-button {
  1805. display: none;
  1806. }
  1807. .vs__search{
  1808. &, &:focus{
  1809. font-size: 0.756em;
  1810. line-height: 1;
  1811. height:1.2em;
  1812. border:none;
  1813. box-sizing: border-box;
  1814. }
  1815. }
  1816. .vs__dropdown-toggle{
  1817. input::placeholder{background-color: #fff;}
  1818. }
  1819. .vs__selected-options{
  1820. background-color: #fff;
  1821. height:18px;
  1822. >input{
  1823. height:100%;
  1824. }
  1825. }
  1826. .vs__actions{
  1827. padding:1px 3px;
  1828. button.vs__clear{
  1829. line-height: 0.5;
  1830. // height:0;
  1831. }
  1832. svg[role="presentation"]{
  1833. transform: scale(0.8);
  1834. path{
  1835. fill: $bleuroi;
  1836. }
  1837. }
  1838. }
  1839. .vs__selected{
  1840. margin:0;
  1841. padding:0.2em 0;
  1842. line-height:1;
  1843. font-size: 0.756em;
  1844. background-color: #fff;
  1845. border:none;
  1846. align-items: middle;
  1847. box-sizing: content-box;
  1848. display: inline-block;
  1849. width: calc(100% - 12px);
  1850. @include fontsans;
  1851. // &>*:not(button){
  1852. // display: inline-block;
  1853. // width:70%;
  1854. // }
  1855. button{
  1856. svg{
  1857. transform: scale(0.8);
  1858. path{
  1859. fill: $bleuroi;
  1860. }
  1861. }
  1862. &.vs__deselect{
  1863. line-height: 0;
  1864. }
  1865. }
  1866. }
  1867. // border-radius: 2px;
  1868. // border: none;
  1869. }
  1870. ul[role="listbox"]{
  1871. @include fontsans;
  1872. padding:0;
  1873. margin:0;
  1874. border:none;
  1875. position: relative;
  1876. li{
  1877. box-sizing: content-box;
  1878. padding:0.3em;
  1879. margin:0;
  1880. font-size: 0.756em;
  1881. line-height: 1;
  1882. white-space: normal;
  1883. position: relative;
  1884. *{
  1885. max-width: 100%;
  1886. }
  1887. h3{
  1888. @include title1black;
  1889. color: $bleuroi;
  1890. padding: 0.5em 0 0 0.3em;
  1891. span.hi{
  1892. font-variant-position: super;
  1893. }
  1894. }
  1895. }
  1896. }
  1897. // ___
  1898. // |_ _|__ ___ _ _ __
  1899. // | |/ _/ _ \ ' \(_-<
  1900. // |___\__\___/_||_/__/
  1901. span.mdi-close{
  1902. cursor: pointer;
  1903. }
  1904. @keyframes spin {
  1905. from {
  1906. transform:rotate(0deg);
  1907. }
  1908. to {
  1909. transform:rotate(360deg);
  1910. }
  1911. }
  1912. span.mdi-loading{
  1913. animation-name: spin;
  1914. animation-duration: 2000ms;
  1915. animation-iteration-count: infinite;
  1916. animation-timing-function: linear;
  1917. }
  1918. // _ _ _
  1919. // | | ___ __ _ __| (_)_ _ __ _
  1920. // | |__/ _ \/ _` / _` | | ' \/ _` |
  1921. // |____\___/\__,_\__,_|_|_||_\__, |
  1922. // |___/
  1923. span.loading{
  1924. @include fontsans;
  1925. font-size: 0.756em;
  1926. color: $grisfonce;
  1927. animation: pulseloading 4s infinite;
  1928. }
  1929. @keyframes pulseloading{
  1930. 0% {
  1931. opacity: 1;
  1932. }
  1933. 50%{
  1934. opacity: 0;
  1935. }
  1936. 100% {
  1937. opacity: 1;
  1938. }
  1939. }